Home
last modified time | relevance | path

Searched refs:lookAhead (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzmaDec.c826 unsigned rem = p->tempBufSize, lookAhead = 0; in LzmaDec_DecodeToDic() local
827 while (rem < LZMA_REQUIRED_INPUT_MAX && lookAhead < inSize) in LzmaDec_DecodeToDic()
828 p->tempBuf[rem++] = src[lookAhead++]; in LzmaDec_DecodeToDic()
835 (*srcLen) += lookAhead; in LzmaDec_DecodeToDic()
849 lookAhead -= (rem - (unsigned)(p->buf - p->tempBuf)); in LzmaDec_DecodeToDic()
850 (*srcLen) += lookAhead; in LzmaDec_DecodeToDic()
851 src += lookAhead; in LzmaDec_DecodeToDic()
852 inSize -= lookAhead; in LzmaDec_DecodeToDic()