Home
last modified time | relevance | path

Searched refs:BlockSizeLog (Results 1 – 25 of 47) sorted by relevance

12

/dports/archivers/7-zip/7-zip-21.07/CPP/7zip/Archive/
H A DHfsHandler.cpp202 unsigned BlockSizeLog; member
449 if ((totalSize >> Header.BlockSizeLog) != fork.NumBlocks) in ReadFile()
465 (size_t)e.NumBlocks << Header.BlockSizeLog)); in ReadFile()
1258 h.BlockSizeLog = i; in Open2()
1270 PhySize2 = ((UInt64)h.NumBlocks + 2) << h.BlockSizeLog; in Open2()
1274 SpecOffset = (UInt64)(1 + startBlock) << h.BlockSizeLog; in Open2()
1319 h.BlockSizeLog = i; in Open2()
1343 if (!extentsFork.IsOk(Header.BlockSizeLog)) in Open2()
1860 if (fork.IsOk(Header.BlockSizeLog)) in Extract()
1925 if (!fork.IsOk(Header.BlockSizeLog)) in GetForkStream()
[all …]
H A DVhdHandler.cpp151 unsigned BlockSizeLog; member
162 UInt32 numSectorsInBlock = (1 << (BlockSizeLog - kSectorSize_Log)); in NumBitMapSectors()
191 BlockSizeLog = i; in Parse()
257 …{ return Footer.ThereIsDynamic() ? ((UInt64)NumUsedBlocks << Dyn.BlockSizeLog) : Footer.CurrentSiz… in GetPackSize()
461 else if (((Footer.CurrentSize - 1) >> Dyn.BlockSizeLog) + 1 != Dyn.NumBlocks) in Open3()
477 UInt32 blockSize = (UInt32)1 << Dyn.BlockSizeLog; in Open3()
543 UInt32 blockIndex = (UInt32)(_virtPos >> Dyn.BlockSizeLog); in Read()
545 UInt32 blockSize = (UInt32)1 << Dyn.BlockSizeLog; in Read()
680 case kpidClusterSize: if (Footer.ThereIsDynamic()) prop = (UInt32)1 << Dyn.BlockSizeLog; break; in GetArchiveProperty()
H A DSquashfsHandler.cpp153 UInt16 BlockSizeLog; member
177 GET_16 (0x22, BlockSizeLog); in Parse3()
210 LE_16 (0x16, BlockSizeLog); in Parse4()
252 BlockSizeLog >= 12 && in Parse()
253 BlockSizeLog < 31 && in Parse()
299 return (FileSize >> _h.BlockSizeLog) + in GetNumBlocks()
362 UInt32 numBlocks = t >> _h.BlockSizeLog; in Parse1()
444 UInt32 numBlocks = t >> _h.BlockSizeLog; in Parse2()
2304 if (cacheSizeLog <= _h.BlockSizeLog) in GetStream()
2305 cacheSizeLog = _h.BlockSizeLog + 1; in GetStream()
[all …]
/dports/archivers/ppmd-7z/p7zip_9.04/CPP/7zip/Archive/Hfs/
H A DHfsHandler.cpp50 case kpidClusterSize: prop = (UInt32)1 << _db.Header.BlockSizeLog; break; in GetArchiveProperty()
51 case kpidFreeSpace: prop = (UInt64)_db.Header.NumFreeBlocks << _db.Header.BlockSizeLog; break; in GetArchiveProperty()
81 …case kpidPackSize: if (!item.IsDir()) prop = (UInt64)item.NumBlocks << _db.Header.BlockSizeLog; br… in GetProperty()
200 RINOK(_stream->Seek((UInt64)e.Pos << _db.Header.BlockSizeLog, STREAM_SEEK_SET, NULL)); in Extract()
201 UInt64 extentSize = (UInt64)e.NumBlocks << _db.Header.BlockSizeLog; in Extract()
209 if (extentSize >= (UInt64)((UInt32)1 << _db.Header.BlockSizeLog)) in Extract()
H A DHfsIn.cpp96 size_t totalSize = (size_t)fork.NumBlocks << Header.BlockSizeLog; in ReadFile()
97 if ((totalSize >> Header.BlockSizeLog) != fork.NumBlocks) in ReadFile()
108 RINOK(ReadExtent(Header.BlockSizeLog, inStream, in ReadFile()
109 (Byte *)buf + ((size_t)curBlock << Header.BlockSizeLog), e)); in ReadFile()
449 h.BlockSizeLog = i; in Open()
463 if ((endPos >> h.BlockSizeLog) < h.NumBlocks) in Open()
/dports/archivers/ppmd-7z/p7zip_9.04/CPP/7zip/Common/
H A DLimitedStreams.cpp71 UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
72 UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
75 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
83 _curRem += (UInt32)1 << BlockSizeLog; in Read()
H A DLimitedStreams.h75 int BlockSizeLog; variable
87 _physPos = StartOffset + (Vector[0] << BlockSizeLog); in InitAndSeek()
/dports/sysutils/squashfs-tools/CPP/7zip/Common/
H A DLimitedStreams.cpp71 UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
72 UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
75 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
83 _curRem += (UInt32)1 << BlockSizeLog; in Read()
H A DLimitedStreams.h76 int BlockSizeLog; variable
88 _physPos = StartOffset + (Vector[0] << BlockSizeLog); in InitAndSeek()
/dports/archivers/maxcso/maxcso-1.10.0/7zip/CPP/7zip/Archive/
H A DHfsHandler.cpp202 unsigned BlockSizeLog; member
433 size_t totalSize = (size_t)fork.NumBlocks << Header.BlockSizeLog; in ReadFile()
434 if ((totalSize >> Header.BlockSizeLog) != fork.NumBlocks) in ReadFile()
449 (Byte *)buf + ((size_t)curBlock << Header.BlockSizeLog), in ReadFile()
450 (size_t)e.NumBlocks << Header.BlockSizeLog)); in ReadFile()
1208 h.BlockSizeLog = i; in Open2()
1239 if (!extentsFork.IsOk(Header.BlockSizeLog)) in Open2()
1746 if (fork.IsOk(Header.BlockSizeLog)) in Extract()
1811 if (!fork.IsOk(Header.BlockSizeLog)) in GetForkStream()
1825 UInt64 cur = ((UInt64)e.NumBlocks << Header.BlockSizeLog); in GetForkStream()
[all …]
H A DVhdHandler.cpp151 unsigned BlockSizeLog; member
162 UInt32 numSectorsInBlock = (1 << (BlockSizeLog - kSectorSize_Log)); in NumBitMapSectors()
191 BlockSizeLog = i; in Parse()
257 …{ return Footer.ThereIsDynamic() ? ((UInt64)NumUsedBlocks << Dyn.BlockSizeLog) : Footer.CurrentSiz… in GetPackSize()
461 else if (((Footer.CurrentSize - 1) >> Dyn.BlockSizeLog) + 1 != Dyn.NumBlocks) in Open3()
477 UInt32 blockSize = (UInt32)1 << Dyn.BlockSizeLog; in Open3()
543 UInt32 blockIndex = (UInt32)(_virtPos >> Dyn.BlockSizeLog); in Read()
545 UInt32 blockSize = (UInt32)1 << Dyn.BlockSizeLog; in Read()
679 case kpidClusterSize: if (Footer.ThereIsDynamic()) prop = (UInt32)1 << Dyn.BlockSizeLog; break; in GetArchiveProperty()
H A DSquashfsHandler.cpp149 UInt16 BlockSizeLog; member
173 GET_16 (0x22, BlockSizeLog); in Parse3()
206 LE_16 (0x16, BlockSizeLog); in Parse4()
248 BlockSizeLog >= 12 && in Parse()
249 BlockSizeLog < 31 && in Parse()
295 return (FileSize >> _h.BlockSizeLog) + in GetNumBlocks()
358 UInt32 numBlocks = t >> _h.BlockSizeLog; in Parse1()
440 UInt32 numBlocks = t >> _h.BlockSizeLog; in Parse2()
2248 if (cacheSizeLog <= _h.BlockSizeLog) in GetStream()
2249 cacheSizeLog = _h.BlockSizeLog + 1; in GetStream()
[all …]
/dports/archivers/ppmd-7z/p7zip_9.04/CPP/7zip/Archive/
H A DVhdHandler.cpp145 int BlockSizeLog; member
154 UInt32 numSectorsInBlock = (1 << (BlockSizeLog - 9)); in NumBitMapSectors()
175 BlockSizeLog = GetLog(Get32(p + 0x20)); in Parse()
176 if (BlockSizeLog < 9 || BlockSizeLog > 30) in Parse()
225 …{ return Footer.ThereIsDynamic() ? ((UInt64)NumUsedBlocks << Dyn.BlockSizeLog) : Footer.CurrentSiz… in GetPackSize()
320 if (GetSize() != ((UInt64)Dyn.NumBlocks << Dyn.BlockSizeLog)) in Open3()
348 UInt32 blockIndex = (UInt32)(_virtPos >> Dyn.BlockSizeLog); in Read()
350 UInt32 blockSize = (UInt32)1 << Dyn.BlockSizeLog; in Read()
496 case kpidClusterSize: if (Footer.ThereIsDynamic()) prop = (UInt32)1 << Dyn.BlockSizeLog; break; in GetArchiveProperty()
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/libchdr/deps/lzma-16.04/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/Dependencies/lzmasdk-18.05/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/www/firefox-esr/firefox-91.8.0/other-licenses/7zstub/src/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/emulators/mess/mame-mame0226/3rdparty/lzma/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/archivers/maxcso/maxcso-1.10.0/7zip/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/archivers/lzma/lzma-19.00/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/archivers/7-zip/7-zip-21.07/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/emulators/mame/mame-mame0226/3rdparty/lzma/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/www/firefox/firefox-99.0/other-licenses/7zstub/src/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/lang/spidermonkey60/firefox-60.9.0/other-licenses/7zstub/src/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/mail/thunderbird/thunderbird-91.8.0/other-licenses/7zstub/src/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()
/dports/lang/spidermonkey78/firefox-78.9.0/other-licenses/7zstub/src/CPP/7zip/Common/
H A DLimitedStreams.cpp104 const UInt32 blockSize = (UInt32)1 << BlockSizeLog; in Read()
105 const UInt32 virtBlock = (UInt32)(_virtPos >> BlockSizeLog); in Read()
109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read()
119 _curRem += (UInt32)1 << BlockSizeLog; in Read()

12