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

  /external/lzma/CPP/7zip/UI/Common/
Bench.h 28 UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 freq, UInt64 size);
33 UInt32 numThreads, UInt32 dictionarySize, IBenchCallback *callback);
ArchiveCommandLine.h 91 UInt32 DictionarySize;
Bench.cpp 448 UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 freq, UInt64 size)
450 UInt64 t = GetLogSize(dictionarySize) - (kBenchMinDicLogSize << kSubBits);
499 HRESULT Init(UInt32 dictionarySize, UInt32 numThreads, CBaseRandomGenerator *rg);
553 HRESULT CEncoderInfo::Init(UInt32 dictionarySize, UInt32 numThreads, CBaseRandomGenerator *rgLoc)
556 kBufferSize = dictionarySize + kAdditionalSize;
587 props[0].ulVal = dictionarySize;
668 UInt32 numThreads, UInt32 dictionarySize, IBenchCallback *callback)
682 if (dictionarySize < (1 << kBenchMinDicLogSize) || numThreads < 1 || numEncoderThreads > kNumThreadsMax)
713 RINOK(encoders[i].Init(dictionarySize, numThreads, &rg));
ArchiveCommandLine.cpp 992 options.DictionarySize = (UInt32)-1;
1015 options.DictionarySize = 1 << logSize;
  /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/CPP/7zip/UI/Console/
BenchCon.cpp 49 UInt32 dictionarySize;
121 UInt64 rating = GetCompressRating(dictionarySize, info.GlobalTime, info.GlobalFreq, info.UnpackSize);
213 callback.dictionarySize = (UInt32)1 << pow;
216 numThreads, callback.dictionarySize, &callback);
Main.cpp 343 HRESULT res = CrcBenchCon((FILE *)stdStream, options.NumIterations, options.NumThreads, options.DictionarySize);
367 (FILE *)stdStream, options.NumIterations, options.NumThreads, options.DictionarySize);
  /external/lzma/CS/7zip/
ICoder.cs 87 DictionarySize,
  /external/lzma/C/
Lzma86.h 49 RamSize = dictionarySize * 11.5 + 6MB + FilterBlockSize
  /external/lzma/
lzma.txt 145 - Small memory requirements for decompressing (16 KB + DictionarySize)
192 Dictionary size is calculated as DictionarySize = 2^N bytes.
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 

Completed in 235 milliseconds