Lines Matching refs:outSize
307 SizeT outSize, in Lzma2Dec_Parse() argument
319 if (outSize == 0 && !checkFinishBlock) in Lzma2Dec_Parse()
342 if (outSize == 0 && p->state != LZMA2_STATE_FINISHED) in Lzma2Dec_Parse()
356 if (outSize == 0) in Lzma2Dec_Parse()
368 if (inCur > outSize) in Lzma2Dec_Parse()
369 inCur = outSize; in Lzma2Dec_Parse()
373 outSize -= inCur; in Lzma2Dec_Parse()
407 SizeT rem = outSize; in Lzma2Dec_Parse()
412 outSize -= rem; in Lzma2Dec_Parse()
429 SizeT outSize = *destLen, inSize = *srcLen; in Lzma2Dec_DecodeToBuf() local
444 if (outCur >= outSize) in Lzma2Dec_DecodeToBuf()
446 outCur = outSize; in Lzma2Dec_DecodeToBuf()
458 outSize -= outCur; in Lzma2Dec_DecodeToBuf()
462 if (outCur == 0 || outSize == 0) in Lzma2Dec_DecodeToBuf()
473 SizeT outSize = *destLen, inSize = *srcLen; in Lzma2Decode() local
479 p.decoder.dicBufSize = outSize; in Lzma2Decode()
482 res = Lzma2Dec_DecodeToDic(&p, outSize, src, srcLen, finishMode, status); in Lzma2Decode()