Lines Matching refs:dicSize
466 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len) in LzmaDec_WriteRem()
467 p->checkDicSize = p->prop.dicSize; in LzmaDec_WriteRem()
487 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2()
492 if (p->processedPos >= p->prop.dicSize) in LzmaDec_DecodeReal2()
493 p->checkDicSize = p->prop.dicSize; in LzmaDec_DecodeReal2()
926 UInt32 dicSize; in LzmaProps_Decode() local
932 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24); in LzmaProps_Decode()
934 if (dicSize < LZMA_DIC_MIN) in LzmaProps_Decode()
935 dicSize = LZMA_DIC_MIN; in LzmaProps_Decode()
936 p->dicSize = dicSize; in LzmaProps_Decode()
979 dicBufSize = propNew.dicSize; in LzmaDec_Allocate()