HomeSort by relevance Sort by last modified time
    Searched refs:dictionarySize (Results 1 - 9 of 9) sorted by null

  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
ExplodingInputStream.java 49 private final int dictionarySize;
76 * @param dictionarySize the size of the sliding dictionary (4096 or 8192)
80 public ExplodingInputStream(final int dictionarySize, final int numberOfTrees, final InputStream in) {
81 if (dictionarySize != 4096 && dictionarySize != 8192) {
87 this.dictionarySize = dictionarySize;
182 final int distanceLowSize = dictionarySize == 4096 ? 6 : 7;
  /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...]
  /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...]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
LZMA2Decoder.java 38 final int dictionarySize = getDictionarySize(coder);
39 return new LZMA2InputStream(in, 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/lz4/programs/
lz4io.c 479 size_t dictionarySize;
485 dictionaryBuffer = LZ4IO_createDict(g_dictionaryFilename, &dictionarySize);
487 cdict = LZ4F_createCDict(dictionaryBuffer, dictionarySize);
    [all...]

Completed in 1146 milliseconds