Home
last modified time | relevance | path

Searched refs:outCur (Results 1 – 2 of 2) sorted by relevance

/external/lzma/C/
DLzma2Dec.c216 SizeT outCur = dicLimit - dicPos; in Lzma2Dec_DecodeToDic() local
219 if (outCur >= p->unpackSize) in Lzma2Dec_DecodeToDic()
221 outCur = (SizeT)p->unpackSize; in Lzma2Dec_DecodeToDic()
239 if (inCur > outCur) in Lzma2Dec_DecodeToDic()
240 inCur = outCur; in Lzma2Dec_DecodeToDic()
266 res = LzmaDec_DecodeToDic(&p->decoder, dicPos + outCur, src, &inCur, curFinishMode, status); in Lzma2Dec_DecodeToDic()
271 outCur = p->decoder.dicPos - dicPos; in Lzma2Dec_DecodeToDic()
272 p->unpackSize -= (UInt32)outCur; in Lzma2Dec_DecodeToDic()
284 if (inCur == 0 && outCur == 0) in Lzma2Dec_DecodeToDic()
434 SizeT inCur = inSize, outCur, dicPos; in Lzma2Dec_DecodeToBuf() local
[all …]
DLzma2DecMt.c1039 SizeT outCur; in Lzma2DecMt_Read() local
1051 outCur = size; in Lzma2DecMt_Read()
1053 res = Lzma2Dec_DecodeToBuf(&p->dec, data, &outCur, in Lzma2DecMt_Read()
1059 p->outProcessed += outCur; in Lzma2DecMt_Read()
1060 *outSize += outCur; in Lzma2DecMt_Read()
1061 size -= outCur; in Lzma2DecMt_Read()
1062 data += outCur; in Lzma2DecMt_Read()
1079 if (inCur == 0 && outCur == 0) in Lzma2DecMt_Read()