Lines Matching refs:inCur
215 SizeT inCur = inSize - *srcLen; in Lzma2Dec_DecodeToDic() local
227 if (inCur == 0) in Lzma2Dec_DecodeToDic()
239 if (inCur > outCur) in Lzma2Dec_DecodeToDic()
240 inCur = outCur; in Lzma2Dec_DecodeToDic()
241 if (inCur == 0) in Lzma2Dec_DecodeToDic()
244 LzmaDec_UpdateWithUncompressed(&p->decoder, src, inCur); in Lzma2Dec_DecodeToDic()
246 src += inCur; in Lzma2Dec_DecodeToDic()
247 *srcLen += inCur; in Lzma2Dec_DecodeToDic()
248 p->unpackSize -= (UInt32)inCur; in Lzma2Dec_DecodeToDic()
263 if (inCur > p->packSize) in Lzma2Dec_DecodeToDic()
264 inCur = (SizeT)p->packSize; in Lzma2Dec_DecodeToDic()
266 res = LzmaDec_DecodeToDic(&p->decoder, dicPos + outCur, src, &inCur, curFinishMode, status); in Lzma2Dec_DecodeToDic()
268 src += inCur; in Lzma2Dec_DecodeToDic()
269 *srcLen += inCur; in Lzma2Dec_DecodeToDic()
270 p->packSize -= (UInt32)inCur; in Lzma2Dec_DecodeToDic()
284 if (inCur == 0 && outCur == 0) in Lzma2Dec_DecodeToDic()
360 SizeT inCur = inSize - *srcLen; in Lzma2Dec_Parse() local
364 if (inCur == 0) in Lzma2Dec_Parse()
366 if (inCur > p->unpackSize) in Lzma2Dec_Parse()
367 inCur = p->unpackSize; in Lzma2Dec_Parse()
368 if (inCur > outSize) in Lzma2Dec_Parse()
369 inCur = outSize; in Lzma2Dec_Parse()
370 p->decoder.dicPos += inCur; in Lzma2Dec_Parse()
371 src += inCur; in Lzma2Dec_Parse()
372 *srcLen += inCur; in Lzma2Dec_Parse()
373 outSize -= inCur; in Lzma2Dec_Parse()
374 p->unpackSize -= (UInt32)inCur; in Lzma2Dec_Parse()
381 if (inCur == 0) in Lzma2Dec_Parse()
398 if (inCur > p->packSize) in Lzma2Dec_Parse()
399 inCur = (SizeT)p->packSize; in Lzma2Dec_Parse()
401 src += inCur; in Lzma2Dec_Parse()
402 *srcLen += inCur; in Lzma2Dec_Parse()
403 p->packSize -= (UInt32)inCur; in Lzma2Dec_Parse()
434 SizeT inCur = inSize, outCur, dicPos; in Lzma2Dec_DecodeToBuf() local
450 res = Lzma2Dec_DecodeToDic(p, dicPos + outCur, src, &inCur, curFinishMode, status); in Lzma2Dec_DecodeToBuf()
452 src += inCur; in Lzma2Dec_DecodeToBuf()
453 inSize -= inCur; in Lzma2Dec_DecodeToBuf()
454 *srcLen += inCur; in Lzma2Dec_DecodeToBuf()