Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/lzma/
H A DLzmaDec.c459 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len) in LzmaDec_WriteRem()
460 p->checkDicSize = p->prop.dicSize; in LzmaDec_WriteRem()
480 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2()
485 if (p->processedPos >= p->prop.dicSize) in LzmaDec_DecodeReal2()
486 p->checkDicSize = p->prop.dicSize; in LzmaDec_DecodeReal2()
911 alloc->Free(alloc, p->dic, ((p->prop).dicSize * sizeof (*p->dic))); in LzmaDec_FreeDict()
923 UInt32 dicSize; in LzmaProps_Decode() local
931 if (dicSize < LZMA_DIC_MIN) in LzmaProps_Decode()
932 dicSize = LZMA_DIC_MIN; in LzmaProps_Decode()
933 p->dicSize = dicSize; in LzmaProps_Decode()
[all …]
H A DLzmaDec.h27 UInt32 dicSize; member