Lines Matching refs:dictSize
53 p->dictSize = p->mc = 0; in LzmaEncProps_Init()
63 …if (p->dictSize == 0) p->dictSize = (level <= 5 ? (1 << (level * 2 + 14)) : (level == 6 ? (1 << 25… in LzmaEncProps_Normalize()
79 return props.dictSize; in LzmaEncProps_GetDictSize()
350 UInt32 dictSize; member
418 props.dictSize > (1 << kDicLogSizeMaxCompress) || props.dictSize > (1 << 30)) in LzmaEnc_SetProps()
420 p->dictSize = props.dictSize; in LzmaEnc_SetProps()
1945 p->matchFinderBase.bigHash = (p->dictSize > kBigHashDicLimit); in LzmaEnc_Alloc()
1947 if (beforeSize + p->dictSize < keepWindowSize) in LzmaEnc_Alloc()
1948 beforeSize = keepWindowSize - p->dictSize; in LzmaEnc_Alloc()
1953 …RINOK(MatchFinderMt_Create(&p->matchFinderMt, p->dictSize, beforeSize, p->numFastBytes, LZMA_MATCH… in LzmaEnc_Alloc()
1960 …if (!MatchFinder_Create(&p->matchFinderBase, p->dictSize, beforeSize, p->numFastBytes, LZMA_MATCH_… in LzmaEnc_Alloc()
2045 if (p->dictSize <= ((UInt32)1 << i)) in LzmaEnc_AllocAndInit()
2210 UInt32 dictSize = p->dictSize; in LzmaEnc_WriteProperties() local
2218 if (dictSize <= ((UInt32)2 << i)) in LzmaEnc_WriteProperties()
2220 dictSize = (2 << i); in LzmaEnc_WriteProperties()
2223 if (dictSize <= ((UInt32)3 << i)) in LzmaEnc_WriteProperties()
2225 dictSize = (3 << i); in LzmaEnc_WriteProperties()
2231 props[1 + i] = (Byte)(dictSize >> (8 * i)); in LzmaEnc_WriteProperties()