/third_party/lzma/C/ |
H A D | Lzma2Dec.c | 135 p->packSize = (UInt32)b << 8;
in Lzma2Dec_UpdateState() 139 p->packSize |= (UInt32)b;
in Lzma2Dec_UpdateState() 140 p->packSize++;
in Lzma2Dec_UpdateState() 141 // if (p->packSize < 5) return LZMA2_STATE_ERROR;
in Lzma2Dec_UpdateState() 142 PRF(printf(" %5u", (unsigned)p->packSize));
in Lzma2Dec_UpdateState() 264 if (inCur > p->packSize)
in Lzma2Dec_DecodeToDic() 265 inCur = (SizeT)p->packSize;
in Lzma2Dec_DecodeToDic() 271 p->packSize -= (UInt32)inCur;
in Lzma2Dec_DecodeToDic() 280 if (p->packSize == 0)
in Lzma2Dec_DecodeToDic() 289 || p->packSize ! in Lzma2Dec_DecodeToDic() [all...] |
H A D | Lzma2Enc.c | 133 size_t packSize = packSizeLimit;
in Lzma2EncInt_EncodeSubblock() local 140 if (packSize < lzHeaderSize)
in Lzma2EncInt_EncodeSubblock() 142 packSize -= lzHeaderSize;
in Lzma2EncInt_EncodeSubblock() 146 outBuf + lzHeaderSize, &packSize, LZMA2_PACK_SIZE_MAX, &unpackSize);
in Lzma2EncInt_EncodeSubblock() 148 PRF(printf("\npackSize = %7d unpackSize = %7d ", packSize, unpackSize));
in Lzma2EncInt_EncodeSubblock() 154 useCopyBlock = (packSize + 2 >= unpackSize || packSize > (1 << 16));
in Lzma2EncInt_EncodeSubblock() 200 const UInt32 pm = (UInt32)(packSize - 1);
in Lzma2EncInt_EncodeSubblock() 216 destPos += packSize;
in Lzma2EncInt_EncodeSubblock() 592 size_t packSize in Lzma2Enc_EncodeMt1() local [all...] |
H A D | XzDec.c | 852 p->packSize = (UInt64)(Int64)-1;
in XzBlock_Parse() 855 READ_VARINT_AND_CHECK(header, pos, headerSize, &p->packSize)
in XzBlock_Parse() 856 if (p->packSize == 0 || p->packSize + headerSize >= (UInt64)1 << 63)
in XzBlock_Parse() 1004 static void XzUnpacker_UpdateIndex(CXzUnpacker *p, UInt64 packSize, UInt64 unpackSize)
in XzUnpacker_UpdateIndex() argument 1007 unsigned num = Xz_WriteVarInt(temp, packSize);
in XzUnpacker_UpdateIndex() 1040 if (p->block.packSize != (UInt64)(Int64)-1)
in XzUnpacker_Code() 1042 UInt64 rem = p->block.packSize - p->packSize;
in XzUnpacker_Code() 1086 p->packSize in XzUnpacker_Code() 1776 UInt64 packSize = block->packSize; XzDecMt_Callback_Parse() local [all...] |
H A D | Xz.h | 46 UInt64 packSize;
member 243 UInt64 packSize;
member 403 #define XzUnpacker_GetPackSizeForIndex(p) ((p)->packSize + (p)->blockHeaderSize + XzFlags_GetCheckSize((p)->streamFlags))
|
H A D | Lzma2Dec.h | 20 UInt32 packSize;
member
|
H A D | XzEnc.c | 77 if (XzBlock_HasPackSize(p)) pos += Xz_WriteVarInt(header + pos, p->packSize);
in XzBlock_WriteHeader() 893 UInt64 packSize = seqSizeOutStream.processed;
in Xz_CompressBlock() local 914 block.packSize = packSize;
in Xz_CompressBlock()
|
H A D | 7zArcIn.c | 407 UInt64 packSize;
in ReadPackInfo() local 409 RINOK(ReadNumber(sd, &packSize))
in ReadPackInfo() 410 sum += packSize;
in ReadPackInfo() 411 if (sum < packSize)
in ReadPackInfo()
|
/third_party/lzma/CPP/7zip/Archive/ |
H A D | LzmaHandler.cpp | 493 UInt64 packSize = 0;
501 lps->InSize = packSize;
528 packSize = decoder.GetInputProcessedSize();
554 _packSize = packSize;
|
H A D | XzHandler.cpp | 796 UInt64 packSize, // pure size from Index record, it doesn't include pad zeros
in DecodeBlock() 817 const UInt64 packSizeAligned = packSize + ((0 - (unsigned)packSize) & 3);
in DecodeBlock() 873 if (XzUnpacker_GetPackSizeForIndex(&xzu.p) != packSize)
in DecodeBlock() 793 DecodeBlock(CXzUnpackerCPP2 &xzu, ISequentialInStream *seqInStream, unsigned streamFlags, UInt64 packSize, size_t unpackSize, Byte *dest ) DecodeBlock() argument
|
/third_party/lzma/CPP/7zip/UI/FileManager/ |
H A D | ProgressDialog2.cpp | 864 const UInt64 packSize = CompressingMode ? outSize : inSize;
in UpdateStatInfo() local 868 IS_UNDEFINED_VAL(packSize))
in UpdateStatInfo() 876 ShowSize(IDT_PROGRESS_PACKED_VAL, packSize, _packed_Prev);
in UpdateStatInfo() 878 if (IS_DEFINED_VAL(packSize) &&
in UpdateStatInfo() 883 UInt64 ratio = packSize * 100 / unpackSize;
in UpdateStatInfo()
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | Extract.cpp | 41 UInt64 packSize,
in DecompressArchive() 202 packSize);
in DecompressArchive() 38 DecompressArchive( CCodecs *codecs, const CArchiveLink &arcLink, UInt64 packSize, const NWildcard::CCensorNode &wildcardCensor, const CExtractOptions &options, bool calcCrc, IExtractCallbackUI *callback, IFolderArchiveExtractCallback *callbackFAE, CArchiveExtractCallback *ecs, UString &errorMessage, UInt64 &stdInProcessed) DecompressArchive() argument
|
H A D | ArchiveExtractCallback.h | 483 UInt64 packSize);
|
H A D | ArchiveExtractCallback.cpp | 304 UInt64 packSize)
in Init() 327 _packTotal = packSize;
in Init() 328 _progressTotal = packSize;
in Init() 296 Init( const CExtractNtOptions &ntOptions, const NWildcard::CCensorNode *wildcardCensor, const CArc *arc, IFolderArchiveExtractCallback *extractCallback2, bool stdOutMode, bool testMode, const FString &directoryPath, const UStringVector &removePathParts, bool removePartsForAltStreams, UInt64 packSize) Init() argument
|
H A D | Bench.cpp | 790 UInt64 GetNumCommands_Dec(UInt64 packSize, UInt64 unpackSize) const
793 GetNumCommands_from_Size_and_Complexity(packSize, DecComplexCompr) +
|
/third_party/lzma/CPP/7zip/Archive/7z/ |
H A D | 7zOut.cpp | 532 UInt64 packSize = 0;
in WriteHeader() local 534 packSize += db.PackSizes[i];
in WriteHeader() 535 headerOffset = packSize;
in WriteHeader()
|
H A D | 7zUpdate.cpp | 2300 const UInt64 packSize = db->GetFolderFullPackSize(folderIndex);
in Update() local 2302 db->GetFolderStreamPos(folderIndex, 0), packSize, progress))
in Update() 2303 lps->ProgressOffset += packSize;
in Update() 2725 UInt64 packSize = 0;
in Update() local 2728 packSize += newDatabase.PackSizes[startPackIndex];
in Update() 2729 lps->OutSize += packSize;
in Update() 2914 NWindows::NCOM::PropVarEm_Set_UInt64(&prop, packSize);
in Update()
|
H A D | 7zIn.cpp | 698 const UInt64 packSize = ReadNumber();
in ReadPackInfo() local 699 sum += packSize;
in ReadPackInfo() 700 if (sum < packSize)
in ReadPackInfo()
|