Home
last modified time | relevance | path

Searched refs:outProcessed (Results 1 – 4 of 4) sorted by relevance

/third_party/lzma/CPP/7zip/Compress/
DLzmaDecoder.cpp164 const SizeT outProcessed = _state.dicPos - dicPos; in CodeSpec() local
165 _outProcessed += outProcessed; in CodeSpec()
171 || (inProcessed == 0 && outProcessed == 0) in CodeSpec()
175 if (needStop || outProcessed >= size) in CodeSpec()
267 SizeT outProcessed = size; in Z7_COM7F_IMF() local
270 const SRes res = LzmaDec_DecodeToBuf(&_state, (Byte *)data, &outProcessed, in Z7_COM7F_IMF()
276 _outProcessed += outProcessed; in Z7_COM7F_IMF()
277 size -= (UInt32)outProcessed; in Z7_COM7F_IMF()
278 data = (Byte *)data + outProcessed; in Z7_COM7F_IMF()
280 *processedSize += (UInt32)outProcessed; in Z7_COM7F_IMF()
[all …]
/third_party/lzma/C/
DLzma2DecMt.c101 UInt64 outProcessed; member
581 me->outProcessed += written; in Lzma2DecMt_MtCallback_Write()
663 outPrev = p->outProcessed; in Lzma2Dec_Decode_ST()
679 SizeT outProcessed; in Lzma2Dec_Decode_ST() local
721 const UInt64 rem = p->outSize - p->outProcessed; in Lzma2Dec_Decode_ST()
736 outProcessed = dec->decoder.dicPos - dicPos; in Lzma2Dec_Decode_ST()
737 p->outProcessed += outProcessed; in Lzma2Dec_Decode_ST()
739 outFinished = (p->outSize_Defined && p->outSize <= p->outProcessed); in Lzma2Dec_Decode_ST()
742 || (inProcessed == 0 && outProcessed == 0) in Lzma2Dec_Decode_ST()
746 if (needStop || outProcessed >= size) in Lzma2Dec_Decode_ST()
[all …]
DXzDec.c1500 UInt64 outProcessed; member
2083 const UInt64 rem = me->outSize - me->outProcessed; in XzDecMt_Callback_Write()
2099 me->outProcessed += written; in XzDecMt_Callback_Write()
2258 SizeT outProcessed; in XzDecMt_Callback_Write() local
2276 outProcessed = 0; in XzDecMt_Callback_Write()
2279 NULL, &outProcessed, in XzDecMt_Callback_Write()
2415 outPrev = p->outProcessed; in XzDecMt_Decode_ST()
2431 SizeT outProcessed; in XzDecMt_Decode_ST() local
2466 const UInt64 rem = p->outSize - p->outProcessed; in XzDecMt_Decode_ST()
2476 outProcessed = outSize; in XzDecMt_Decode_ST()
[all …]
/third_party/lzma/C/Util/Lzma/
DLzmaUtil.c124 SizeT outProcessed = OUT_BUF_SIZE - outPos; in Decode2() local
127 if (thereIsSize && outProcessed > unpackSize) in Decode2()
129 outProcessed = (SizeT)unpackSize; in Decode2()
133 res = LzmaDec_DecodeToBuf(state, outBuf + outPos, &outProcessed, in Decode2()
136 outPos += outProcessed; in Decode2()
137 unpackSize -= outProcessed; in Decode2()
148 if (inProcessed == 0 && outProcessed == 0) in Decode2()