Home
last modified time | relevance | path

Searched refs:dicLogSize (Results 1 – 2 of 2) sorted by relevance

/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs1422 int dicLogSize; in SetCoderProperties()
1423 for (dicLogSize = 0; dicLogSize < (UInt32)kDicLogSizeMaxCompress; dicLogSize++) in SetCoderProperties()
1424 if (dictionarySize <= ((UInt32)(1) << dicLogSize)) in SetCoderProperties()
1426 _distTableSize = (UInt32)dicLogSize * 2; in SetCoderProperties()
/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java1369 int dicLogSize; in SetDictionarySize() local
1370 for (dicLogSize = 0; dictionarySize > (1 << dicLogSize); dicLogSize++) ; in SetDictionarySize()
1371 _distTableSize = dicLogSize * 2; in SetDictionarySize()