Home
last modified time | relevance | path

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

/openbmc/u-boot/lib/lzma/
H A DLzmaDec.c832 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()
841 (*srcLen) += lookAhead; in LzmaDec_DecodeToDic()
854 lookAhead -= (rem - (unsigned)(p->buf - p->tempBuf)); in LzmaDec_DecodeToDic()
855 (*srcLen) += lookAhead; in LzmaDec_DecodeToDic()
856 src += lookAhead; in LzmaDec_DecodeToDic()
857 inSize -= lookAhead; in LzmaDec_DecodeToDic()