Lines Matching defs:bufLimit
54 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<= 8; code = (code << 8) | (*buf++); }
136 And it decodes new LZMA-symbols while (buf < bufLimit), but "buf" is without last normalization
148 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit)
430 while (dicPos < limit && buf < bufLimit);
473 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit)
484 RINOK(LzmaDec_DecodeReal(p, limit2, bufLimit));
489 while (p->dicPos < limit && p->buf < bufLimit && p->remainLen < kMatchSpecLenStart);
510 const Byte *bufLimit = buf + inSize;
526 /* if (bufLimit - buf >= 7) return DUMMY_LIT; */
660 /* if (bufLimit - buf >= 8) return DUMMY_MATCH; */
794 const Byte *bufLimit;
811 bufLimit = src;
814 bufLimit = src + inSize - LZMA_REQUIRED_INPUT_MAX;
816 if (LzmaDec_DecodeReal2(p, dicLimit, bufLimit) != 0)