Lines Matching refs:dicSize
459 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
929 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24); in LzmaProps_Decode()
931 if (dicSize < LZMA_DIC_MIN) in LzmaProps_Decode()
932 dicSize = LZMA_DIC_MIN; in LzmaProps_Decode()
933 p->dicSize = dicSize; in LzmaProps_Decode()
976 dicBufSize = propNew.dicSize; in LzmaDec_Allocate()