Searched defs:bufLimit (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzmaDec.c54 #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) argument
430 while (dicPos < limit && buf < bufLimit);
473 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit) argument
484 RINOK(LzmaDec_DecodeReal(p, limit2, bufLimit));
489 while (p->dicPos < limit && p->buf < bufLimit && p->remainLen < kMatchSpecLenStart);
510 const Byte *bufLimit = buf + inSize; local
526 /* if (bufLimit - buf >= 7) return DUMMY_LIT; */
660 /* if (bufLimit
794 const Byte *bufLimit; local
[all...]

Completed in 61 milliseconds