Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/lzma/
H A DLzmaDec.c754 p->tempBuf[p->tempBufSize++] = *src++; in LzmaDec_DecodeToDic()
760 if (p->tempBuf[0] != 0) in LzmaDec_DecodeToDic()
763 LzmaDec_InitRc(p, p->tempBuf); in LzmaDec_DecodeToDic()
800 (void) memcpy(p->tempBuf, src, inSize); in LzmaDec_DecodeToDic()
828 p->tempBuf[rem++] = src[lookAhead++]; in LzmaDec_DecodeToDic()
832 int dummyRes = LzmaDec_TryDummy(p, p->tempBuf, rem); in LzmaDec_DecodeToDic()
845 p->buf = p->tempBuf; in LzmaDec_DecodeToDic()
849 lookAhead -= (rem - (unsigned)(p->buf - p->tempBuf)); in LzmaDec_DecodeToDic()
H A DLzmaDec.h64 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX]; member