Lines Matching refs:packSize
76 size_t packSize = packSizeLimit; in Lzma2EncInt_EncodeSubblock() local
83 if (packSize < lzHeaderSize) in Lzma2EncInt_EncodeSubblock()
85 packSize -= lzHeaderSize; in Lzma2EncInt_EncodeSubblock()
89 outBuf + lzHeaderSize, &packSize, LZMA2_PACK_SIZE_MAX, &unpackSize); in Lzma2EncInt_EncodeSubblock()
91 PRF(printf("\npackSize = %7d unpackSize = %7d ", packSize, unpackSize)); in Lzma2EncInt_EncodeSubblock()
97 useCopyBlock = (packSize + 2 >= unpackSize || packSize > (1 << 16)); in Lzma2EncInt_EncodeSubblock()
139 UInt32 pm = (UInt32)(packSize - 1); in Lzma2EncInt_EncodeSubblock()
155 destPos += packSize; in Lzma2EncInt_EncodeSubblock()
281 size_t packSize = LZMA2_CHUNK_SIZE_COMPRESSED_MAX; in Lzma2Enc_EncodeMt1() local
282 res = Lzma2EncInt_EncodeSubblock(p, mainEncoder->outBuf, &packSize, outStream); in Lzma2Enc_EncodeMt1()
285 packTotal += packSize; in Lzma2Enc_EncodeMt1()
289 if (packSize == 0) in Lzma2Enc_EncodeMt1()
331 size_t packSize = destLim - *destSize; in MtCallbackImp_Code() local
332 res = Lzma2EncInt_EncodeSubblock(p, dest + *destSize, &packSize, NULL); in MtCallbackImp_Code()
335 *destSize += packSize; in MtCallbackImp_Code()
337 if (packSize == 0) in MtCallbackImp_Code()