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

  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 134 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0;
157 if (curMatch2 > matchMinPos)
163 if (curMatch3 > matchMinPos)
189 if (curMatch > matchMinPos)
204 if (curMatch <= matchMinPos || count-- == 0)
269 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0;
299 if (curMatch <= matchMinPos || count-- == 0)
  /external/lzma/CS/7zip/Compress/LZ/
LzBinTree.cs 134 UInt32 matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0;
157 if (curMatch2 > matchMinPos)
163 if (curMatch3 > matchMinPos)
189 if (curMatch > matchMinPos)
204 if(curMatch <= matchMinPos || count-- == 0)
269 UInt32 matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0;
299 if (curMatch <= matchMinPos || count-- == 0)
  /external/lzma/C/
LzFindMt.h 39 typedef UInt32 * (*Mf_Mix_Matches)(void *p, UInt32 matchMinPos, UInt32 *distances);
LzFindMt.c 558 UInt32 * MixMatches2(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *distances)
569 if (curMatch2 >= matchMinPos)
578 UInt32 * MixMatches3(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *distances)
593 if (curMatch2 >= matchMinPos && cur[(ptrdiff_t)curMatch2 - lzPos] == cur[0])
604 if (curMatch3 >= matchMinPos && cur[(ptrdiff_t)curMatch3 - lzPos] == cur[0])
613 UInt32 *MixMatches4(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *distances)
630 if (curMatch2 >= matchMinPos && cur[(ptrdiff_t)curMatch2 - lzPos] == cur[0])
641 if (curMatch3 >= matchMinPos && cur[(ptrdiff_t)curMatch3 - lzPos] == cur[0])
653 if (curMatch4 >= matchMinPos)

Completed in 43 milliseconds