HomeSort by relevance Sort by last modified time
    Searched full:dictionarysize (Results 1 - 15 of 15) sorted by null

  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 186 static UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 size)
188 UInt64 t = GetLogSize(dictionarySize) - (18 << kSubBits);
201 UInt32 dictionarySize,
206 return (GetCompressRating(dictionarySize, elapsedTimeEn, sizeEn) +
225 UInt32 dictionarySize,
237 rating = GetCompressRating(dictionarySize, elapsedTime, size);
241 static public int LzmaBenchmark(Int32 numIterations, UInt32 dictionarySize)
245 if (dictionarySize < (1 << 18))
258 CoderPropID.DictionarySize,
262 (Int32)(dictionarySize),
    [all...]
LzmaAlone.cs 274 CoderPropID.DictionarySize,
  /external/lzma/Java/SevenZip/
LzmaBench.java 236 static long GetCompressRating(int dictionarySize, long elapsedTime, long size)
238 long t = GetLogSize(dictionarySize) - (18 << kSubBits);
251 int dictionarySize,
256 return (GetCompressRating(dictionarySize, elapsedTimeEn, sizeEn) +
276 int dictionarySize,
288 rating = GetCompressRating(dictionarySize, elapsedTime, size);
292 static public int LzmaBenchmark(int numIterations, int dictionarySize) throws Exception
296 if (dictionarySize < (1 << 18))
306 if (!encoder.SetDictionarySize(dictionarySize))
309 int kBufferSize = dictionarySize + kAdditionalSize;
    [all...]
LzmaAlone.java 14 public int DictionarySize = 1 << 23;
36 DictionarySize = 1 << Integer.parseInt(s.substring(1));
185 dictionary = params.DictionarySize;
206 if (!encoder.SetDictionarySize(params.DictionarySize))
  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 154 boolean SetDictionarySize(int dictionarySize)
156 if (dictionarySize < 0)
158 if (m_DictionarySize != dictionarySize)
160 m_DictionarySize = dictionarySize;
322 int dictionarySize = 0;
324 dictionarySize += ((int)(properties[1 + i]) & 0xFF) << (i * 8);
327 return SetDictionarySize(dictionarySize);
Encoder.java     [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 167 void SetDictionarySize(uint dictionarySize)
169 if (m_DictionarySize != dictionarySize)
171 m_DictionarySize = dictionarySize;
359 UInt32 dictionarySize = 0;
361 dictionarySize += ((UInt32)(properties[1 + i])) << (i * 8);
362 SetDictionarySize(dictionarySize);
LzmaEncoder.cs     [all...]
  /external/lzma/CS/7zip/
ICoder.cs 87 DictionarySize,
  /external/lzma/C/
Lzma86.h 49 RamSize = dictionarySize * 11.5 + 6MB + FilterBlockSize
  /external/lzma/DOC/
lzma-sdk.txt 195 - Small memory requirements for decompressing (16 KB + DictionarySize)
242 Dictionary size is calculated as DictionarySize = 2^N bytes.
lzma-specification.txt 208 Encoder_RAM_Usage = 4 MiB + 11 * dictionarySize.
    [all...]
  /prebuilts/devtools/tools/lib/
commons-compress-1.8.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 
  /prebuilts/tools/common/offline-m2/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 

Completed in 674 milliseconds