Home
last modified time | relevance | path

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

/third_party/lzma/C/
DLzmaDec.c910 p->tempBufSize = 0; in LzmaDec_InitDicAndState()
964 for (; inSize > 0 && p->tempBufSize < RC_INIT_SIZE; (*srcLen)++, inSize--) in LzmaDec_DecodeToDic()
965 p->tempBuf[p->tempBufSize++] = *src++; in LzmaDec_DecodeToDic()
966 if (p->tempBufSize != 0 && p->tempBuf[0] != 0) in LzmaDec_DecodeToDic()
968 if (p->tempBufSize < RC_INIT_SIZE) in LzmaDec_DecodeToDic()
985 p->tempBufSize = 0; in LzmaDec_DecodeToDic()
1039 if (p->tempBufSize == 0) in LzmaDec_DecodeToDic()
1056 p->tempBufSize = (unsigned)inSize; in LzmaDec_DecodeToDic()
1071 p->tempBufSize = (unsigned)dummyProcessed; in LzmaDec_DecodeToDic()
1117 unsigned rem = p->tempBufSize; in LzmaDec_DecodeToDic()
[all …]
DLzmaDec.h72 unsigned tempBufSize; member