Lines Matching refs:dicSize
472 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len) in LzmaDec_WriteRem()
473 p->checkDicSize = p->prop.dicSize; in LzmaDec_WriteRem()
494 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2()
499 if (p->processedPos >= p->prop.dicSize) in LzmaDec_DecodeReal2()
500 p->checkDicSize = p->prop.dicSize; in LzmaDec_DecodeReal2()
933 UInt32 dicSize; in LzmaProps_Decode() local
939 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24); in LzmaProps_Decode()
941 if (dicSize < LZMA_DIC_MIN) in LzmaProps_Decode()
942 dicSize = LZMA_DIC_MIN; in LzmaProps_Decode()
943 p->dicSize = dicSize; in LzmaProps_Decode()
986 dicBufSize = propNew.dicSize; in LzmaDec_Allocate()