Lines Matching refs:tempBuf
886 p->tempBuf[p->tempBufSize++] = *src++; in LzmaDec_DecodeToDic()
887 if (p->tempBufSize != 0 && p->tempBuf[0] != 0) in LzmaDec_DecodeToDic()
895 ((UInt32)p->tempBuf[1] << 24) in LzmaDec_DecodeToDic()
896 | ((UInt32)p->tempBuf[2] << 16) in LzmaDec_DecodeToDic()
897 | ((UInt32)p->tempBuf[3] << 8) in LzmaDec_DecodeToDic()
898 | ((UInt32)p->tempBuf[4]); in LzmaDec_DecodeToDic()
951 memcpy(p->tempBuf, src, inSize); in LzmaDec_DecodeToDic()
978 p->tempBuf[rem++] = src[lookAhead++]; in LzmaDec_DecodeToDic()
982 int dummyRes = LzmaDec_TryDummy(p, p->tempBuf, (SizeT)rem); in LzmaDec_DecodeToDic()
995 p->buf = p->tempBuf; in LzmaDec_DecodeToDic()
1000 unsigned kkk = (unsigned)(p->buf - p->tempBuf); in LzmaDec_DecodeToDic()