Lines Matching refs:dicSize
440 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len) in LzmaDec_WriteRem()
441 p->checkDicSize = p->prop.dicSize; in LzmaDec_WriteRem()
461 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2()
466 if (p->processedPos >= p->prop.dicSize) in LzmaDec_DecodeReal2()
467 p->checkDicSize = p->prop.dicSize; in LzmaDec_DecodeReal2()
900 UInt32 dicSize; in LzmaProps_Decode() local
906 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24); in LzmaProps_Decode()
908 if (dicSize < LZMA_DIC_MIN) in LzmaProps_Decode()
909 dicSize = LZMA_DIC_MIN; in LzmaProps_Decode()
910 p->dicSize = dicSize; in LzmaProps_Decode()
953 dicBufSize = propNew.dicSize; in LzmaDec_Allocate()