Lines Matching refs:rem
398 SizeT rem = limit - dicPos; in LzmaDec_DecodeReal() local
399 unsigned curLen = ((rem < len) ? (unsigned)rem : len); in LzmaDec_DecodeReal()
487 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2() local
488 if (limit - p->dicPos > rem) in LzmaDec_DecodeReal2()
489 limit2 = p->dicPos + rem; in LzmaDec_DecodeReal2()
832 unsigned rem = p->tempBufSize, lookAhead = 0; in LzmaDec_DecodeToDic() local
833 while (rem < LZMA_REQUIRED_INPUT_MAX && lookAhead < inSize) in LzmaDec_DecodeToDic()
834 p->tempBuf[rem++] = src[lookAhead++]; in LzmaDec_DecodeToDic()
835 p->tempBufSize = rem; in LzmaDec_DecodeToDic()
836 if (rem < LZMA_REQUIRED_INPUT_MAX || checkEndMarkNow) in LzmaDec_DecodeToDic()
838 int dummyRes = LzmaDec_TryDummy(p, p->tempBuf, rem); in LzmaDec_DecodeToDic()
854 lookAhead -= (rem - (unsigned)(p->buf - p->tempBuf)); in LzmaDec_DecodeToDic()