Home
last modified time | relevance | path

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

/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs1414 const int kDicLogSizeMaxCompress = 30; in SetCoderProperties()
1419 dictionarySize > (UInt32)(1 << kDicLogSizeMaxCompress)) in SetCoderProperties()
1423 for (dicLogSize = 0; dicLogSize < (UInt32)kDicLogSizeMaxCompress; dicLogSize++) in SetCoderProperties()
/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java1365 int kDicLogSizeMaxCompress = 29; in SetDictionarySize() local
1366 if (dictionarySize < (1 << Base.kDicLogSizeMin) || dictionarySize > (1 << kDicLogSizeMaxCompress)) in SetDictionarySize()
/external/lzma/C/
DLzmaEnc.c103 #define kDicLogSizeMaxCompress 32 macro
121 #define kDicLogSizeMaxCompress ((kNumLogBits - 1) * 2 + 7) macro
459 || props.dictSize > ((UInt64)1 << kDicLogSizeMaxCompress) in LzmaEnc_SetProps()