Lines Matching refs:inLim
112 size_t inLim; member
641 size_t inPos, inLim; in Lzma2Dec_Decode_ST() local
663 inLim = 0; in Lzma2Dec_Decode_ST()
680 if (inPos == inLim) in Lzma2Dec_Decode_ST()
685 inData = MtDec_Read(&p->mtc, &inLim); in Lzma2Dec_Decode_ST()
690 inLim = 0; in Lzma2Dec_Decode_ST()
697 inLim = p->inBufSize; in Lzma2Dec_Decode_ST()
699 p->readRes = ISeqInStream_Read(p->inStream, (void *)inData, &inLim); in Lzma2Dec_Decode_ST()
702 if (inLim == 0 || p->readRes != SZ_OK) in Lzma2Dec_Decode_ST()
727 inProcessed = inLim - inPos; in Lzma2Dec_Decode_ST()
1004 p->inLim = 0; in Lzma2DecMt_Init()
1043 if (p->inPos == p->inLim && readRes == SZ_OK) in Lzma2DecMt_Read()
1046 p->inLim = p->props.inBufSize_ST; in Lzma2DecMt_Read()
1047 readRes = ISeqInStream_Read(p->inStream, p->inBuf, &p->inLim); in Lzma2DecMt_Read()
1050 inCur = p->inLim - p->inPos; in Lzma2DecMt_Read()