Lines Matching refs:SizeT
163 static void LzmaDec_UpdateWithUncompressed(CLzmaDec *p, const Byte *src, SizeT size) in LzmaDec_UpdateWithUncompressed()
175 SRes Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit, in Lzma2Dec_DecodeToDic()
176 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) in Lzma2Dec_DecodeToDic()
178 SizeT inSize = *srcLen; in Lzma2Dec_DecodeToDic()
184 SizeT dicPos; in Lzma2Dec_DecodeToDic()
215 SizeT inCur = inSize - *srcLen; in Lzma2Dec_DecodeToDic()
216 SizeT outCur = dicLimit - dicPos; in Lzma2Dec_DecodeToDic()
221 outCur = (SizeT)p->unpackSize; in Lzma2Dec_DecodeToDic()
264 inCur = (SizeT)p->packSize; in Lzma2Dec_DecodeToDic()
307 SizeT outSize, in Lzma2Dec_Parse()
308 const Byte *src, SizeT *srcLen, in Lzma2Dec_Parse()
311 SizeT inSize = *srcLen; in Lzma2Dec_Parse()
360 SizeT inCur = inSize - *srcLen; in Lzma2Dec_Parse()
399 inCur = (SizeT)p->packSize; in Lzma2Dec_Parse()
407 SizeT rem = outSize; in Lzma2Dec_Parse()
427 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,… in Lzma2Dec_DecodeToBuf()
429 SizeT outSize = *destLen, inSize = *srcLen; in Lzma2Dec_DecodeToBuf()
434 SizeT inCur = inSize, outCur, dicPos; in Lzma2Dec_DecodeToBuf()
468 SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, in Lzma2Decode()
473 SizeT outSize = *destLen, inSize = *srcLen; in Lzma2Decode()