Lines Matching refs:dictSize
50 p->dictSize = p->mc = 0; in LzmaEncProps_Init()
61 …if (p->dictSize == 0) p->dictSize = (level <= 5 ? (1 << (level * 2 + 14)) : (level == 6 ? (1 << 25… in LzmaEncProps_Normalize()
62 if (p->dictSize > p->reduceSize) in LzmaEncProps_Normalize()
67 if ((UInt32)p->reduceSize <= ((UInt32)2 << i)) { p->dictSize = ((UInt32)2 << i); break; } in LzmaEncProps_Normalize()
68 if ((UInt32)p->reduceSize <= ((UInt32)3 << i)) { p->dictSize = ((UInt32)3 << i); break; } in LzmaEncProps_Normalize()
92 return props.dictSize; in LzmaEncProps_GetDictSize()
343 UInt32 dictSize; member
409 props.dictSize > ((UInt32)1 << kDicLogSizeMaxCompress) || props.dictSize > ((UInt32)1 << 30)) in LzmaEnc_SetProps()
411 p->dictSize = props.dictSize; in LzmaEnc_SetProps()
1935 p->matchFinderBase.bigHash = (p->dictSize > kBigHashDicLimit); in LzmaEnc_Alloc()
1937 if (beforeSize + p->dictSize < keepWindowSize) in LzmaEnc_Alloc()
1938 beforeSize = keepWindowSize - p->dictSize; in LzmaEnc_Alloc()
1943 …RINOK(MatchFinderMt_Create(&p->matchFinderMt, p->dictSize, beforeSize, p->numFastBytes, LZMA_MATCH… in LzmaEnc_Alloc()
1950 …if (!MatchFinder_Create(&p->matchFinderBase, p->dictSize, beforeSize, p->numFastBytes, LZMA_MATCH_… in LzmaEnc_Alloc()
2035 if (p->dictSize <= ((UInt32)1 << i)) in LzmaEnc_AllocAndInit()
2205 UInt32 dictSize = p->dictSize; in LzmaEnc_WriteProperties() local
2213 if (dictSize <= ((UInt32)2 << i)) in LzmaEnc_WriteProperties()
2215 dictSize = (2 << i); in LzmaEnc_WriteProperties()
2218 if (dictSize <= ((UInt32)3 << i)) in LzmaEnc_WriteProperties()
2220 dictSize = (3 << i); in LzmaEnc_WriteProperties()
2226 props[1 + i] = (Byte)(dictSize >> (8 * i)); in LzmaEnc_WriteProperties()