Home
last modified time | relevance | path

Searched refs:numFolders (Results 1 – 7 of 7) sorted by relevance

/external/lzma/C/
D7zArcIn.c672 UInt32 fo, numFolders, numCodersOutStreams, packStreamIndex; in ReadUnpackInfo() local
677 RINOK(SzReadNumber32(sd2, &numFolders)); in ReadUnpackInfo()
680 p->NumFolders = numFolders; in ReadUnpackInfo()
695 MY_ALLOC(size_t, p->FoCodersOffsets, (size_t)numFolders + 1, alloc); in ReadUnpackInfo()
696 MY_ALLOC(size_t, p->FoSizesOffsets, (size_t)numFolders + 1, alloc); in ReadUnpackInfo()
697 MY_ALLOC(UInt32, p->FoStartPackStreamIndex, (size_t)numFolders + 1, alloc); in ReadUnpackInfo()
704 for (fo = 0; fo < numFolders; fo++) in ReadUnpackInfo()
869 RINOK(ReadBitUi32s(&sd, numFolders, &p->FolderCRCs, alloc)); in ReadUnpackInfo()
892 UInt32 numFolders = p->NumFolders; in ReadSubStreamsInfo() local
893 UInt32 numUnpackStreams = numFolders; in ReadSubStreamsInfo()
[all …]
/external/lzma/CPP/7zip/UI/Common/
DEnumDirItems.h17 …virtual HRESULT ScanProgress(UInt64 numFolders, UInt64 numFiles, UInt64 totalSize, const wchar_t *…
DHashCalc.cpp37 …HRESULT ScanProgress(UInt64 numFolders, UInt64 numFiles, UInt64 totalSize, const wchar_t *path, bo… in ScanProgress()
39 return Callback->ScanProgress(numFolders, numFiles, totalSize, path, isDir); in ScanProgress()
DHashCalc.h69 …virtual HRESULT ScanProgress(UInt64 numFolders, UInt64 numFiles, UInt64 totalSize, const wchar_t *…
DUpdate.h166 …virtual HRESULT ScanProgress(UInt64 numFolders, UInt64 numFiles, UInt64 totalSize, const wchar_t *…
DUpdate.cpp873 …HRESULT ScanProgress(UInt64 numFolders, UInt64 numFiles, UInt64 totalSize, const wchar_t *path, bo… in ScanProgress()
875 return Callback->ScanProgress(numFolders, numFiles, totalSize, path, isDir); in ScanProgress()
/external/lzma/CPP/7zip/Archive/7z/
D7zIn.cpp681 CNum numFolders = ReadNum(); in ReadUnpackInfo() local
688 folders.NumFolders = numFolders; in ReadUnpackInfo()
690 folders.FoStartPackStreamIndex.Alloc(numFolders + 1); in ReadUnpackInfo()
691 folders.FoToMainUnpackSizeIndex.Alloc(numFolders); in ReadUnpackInfo()
692 folders.FoCodersDataOffset.Alloc(numFolders + 1); in ReadUnpackInfo()
693 folders.FoToCoderUnpackSizes.Alloc(numFolders + 1); in ReadUnpackInfo()
701 for (fo = 0; fo < numFolders; fo++) in ReadUnpackInfo()
838 ReadHashDigests(numFolders, folders.FolderCRCs); in ReadUnpackInfo()