Home
last modified time | relevance | path

Searched refs:matchMinPos (Results 1 – 4 of 4) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java134 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in GetMatches() local
157 if (curMatch2 > matchMinPos) in GetMatches()
163 if (curMatch3 > matchMinPos) in GetMatches()
189 if (curMatch > matchMinPos) in GetMatches()
204 if (curMatch <= matchMinPos || count-- == 0) in GetMatches()
269 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in Skip() local
299 if (curMatch <= matchMinPos || count-- == 0) in Skip()
/external/lzma/CS/7zip/Compress/LZ/
DLzBinTree.cs134 UInt32 matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in GetMatches()
157 if (curMatch2 > matchMinPos) in GetMatches()
163 if (curMatch3 > matchMinPos) in GetMatches()
189 if (curMatch > matchMinPos) in GetMatches()
204 if(curMatch <= matchMinPos || count-- == 0) in GetMatches()
269 UInt32 matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in Skip()
299 if (curMatch <= matchMinPos || count-- == 0) in Skip()
/external/lzma/C/
DLzFindMt.c564 static UInt32 * MixMatches2(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *distances) in MixMatches2() argument
575 if (curMatch2 >= matchMinPos) in MixMatches2()
585 static UInt32 * MixMatches3(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *distances) in MixMatches3() argument
599 if (curMatch2 >= matchMinPos && cur[(ptrdiff_t)curMatch2 - lzPos] == cur[0]) in MixMatches3()
611 if (curMatch3 >= matchMinPos && cur[(ptrdiff_t)curMatch3 - lzPos] == cur[0]) in MixMatches3()
DLzFindMt.h39 typedef UInt32 * (*Mf_Mix_Matches)(void *p, UInt32 matchMinPos, UInt32 *distances);