Home
last modified time | relevance | path

Searched refs:dictSize (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzmaEnc.c53 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()
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()
[all …]
H A DLzmaEnc.h19 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version member
/illumos-gate/usr/src/cmd/lofiadm/
H A Dmain.c250 props.dictSize = 1 << 23; in lzma_compress()