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

  /external/lzma/CS/7zip/Compress/LZ/
IMatchFinder.cs 20 UInt32 matchMaxLen, UInt32 keepAddBufferAfter);
LzBinTree.cs 80 UInt32 matchMaxLen, UInt32 keepAddBufferAfter)
84 _cutValue = 16 + (matchMaxLen >> 1);
87 matchMaxLen + keepAddBufferAfter) / 2 + 256;
89 base.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize);
91 _matchMaxLen = matchMaxLen;
  /external/lzma/C/
LzFindMt.h 75 UInt32 matchMaxLen;
95 UInt32 matchMaxLen, UInt32 keepAddBufferAfter, ISzAlloc *alloc);
LzFind.h 24 UInt32 matchMaxLen;
65 keepAddBufferBefore + matchMaxLen + keepAddBufferAfter < 511MB
68 UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter,
LzFind.c 174 UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter,
186 sizeReserv += (keepAddBufferBefore + matchMaxLen + keepAddBufferAfter) / 2 + (1 << 19);
189 p->keepSizeAfter = matchMaxLen + keepAddBufferAfter;
195 p->matchMaxLen = matchMaxLen;
266 if (lenLimit > p->matchMaxLen)
267 lenLimit = p->matchMaxLen;
LzFindMt.c 317 UInt32 limit = kMtBtBlockSize - (p->matchMaxLen * 2);
333 UInt32 lenLimit = p->matchMaxLen;
467 UInt32 matchMaxLen, UInt32 keepAddBufferAfter, ISzAlloc *alloc)
471 if (kMtBtBlockSize <= matchMaxLen * 4)
482 if (!MatchFinder_Create(mf, historySize, keepAddBufferBefore, matchMaxLen, keepAddBufferAfter, alloc))
506 p->matchMaxLen = mf->matchMaxLen;
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/
BinTree.java 60 public boolean Create (int historySize, int keepAddBufferBefore, int matchMaxLen, int keepAddBufferAfter) {
62 _cutValue = 16 + (matchMaxLen >> 1);
64 int windowReservSize = (historySize + keepAddBufferBefore + matchMaxLen + keepAddBufferAfter) / 2 + 256;
66 super.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize);
68 _matchMaxLen = matchMaxLen;
  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 80 int matchMaxLen, int keepAddBufferAfter)
84 _cutValue = 16 + (matchMaxLen >> 1);
87 matchMaxLen + keepAddBufferAfter) / 2 + 256;
89 super.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize);
91 _matchMaxLen = matchMaxLen;

Completed in 137 milliseconds