Home
last modified time | relevance | path

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

/openbmc/u-boot/lib/lzma/
H A DLzmaDec.c761 p->tempBuf[p->tempBufSize++] = *src++; in LzmaDec_DecodeToDic()
767 if (p->tempBuf[0] != 0) in LzmaDec_DecodeToDic()
770 LzmaDec_InitRc(p, p->tempBuf); in LzmaDec_DecodeToDic()
807 memcpy(p->tempBuf, src, inSize); in LzmaDec_DecodeToDic()
834 p->tempBuf[rem++] = src[lookAhead++]; in LzmaDec_DecodeToDic()
838 int dummyRes = LzmaDec_TryDummy(p, p->tempBuf, rem); in LzmaDec_DecodeToDic()
851 p->buf = p->tempBuf; in LzmaDec_DecodeToDic()
854 lookAhead -= (rem - (unsigned)(p->buf - p->tempBuf)); in LzmaDec_DecodeToDic()
H A DLzmaDec.h64 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX]; member