Lines Matching refs:dicSize
601 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len) in LzmaDec_WriteRem()
602 p->checkDicSize = p->prop.dicSize; in LzmaDec_WriteRem()
631 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2()
642 if (p->checkDicSize == 0 && p->processedPos >= p->prop.dicSize) in LzmaDec_DecodeReal2()
643 p->checkDicSize = p->prop.dicSize; in LzmaDec_DecodeReal2()
1082 UInt32 dicSize; in LzmaProps_Decode() local
1088 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24); in LzmaProps_Decode()
1090 if (dicSize < LZMA_DIC_MIN) in LzmaProps_Decode()
1091 dicSize = LZMA_DIC_MIN; in LzmaProps_Decode()
1092 p->dicSize = dicSize; in LzmaProps_Decode()
1138 UInt32 dictSize = propNew.dicSize; in LzmaDec_Allocate()