Home
last modified time | relevance | path

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

/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/
DBinTree.java105 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in GetMatches() local
125 if (curMatch2 > matchMinPos) if (_bufferBase[_bufferOffset + curMatch2] == _bufferBase[cur]) { in GetMatches()
129 if (curMatch3 > matchMinPos) if (_bufferBase[_bufferOffset + curMatch3] == _bufferBase[cur]) { in GetMatches()
150 if (curMatch > matchMinPos) { in GetMatches()
161 if (curMatch <= matchMinPos || count-- == 0) { in GetMatches()
213 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in Skip() local
240 if (curMatch <= matchMinPos || count-- == 0) { in Skip()
/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.c558 UInt32 * MixMatches2(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *distances) in MixMatches2() argument
569 if (curMatch2 >= matchMinPos) in MixMatches2()
578 UInt32 * MixMatches3(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *distances) in MixMatches3() argument
593 if (curMatch2 >= matchMinPos && cur[(ptrdiff_t)curMatch2 - lzPos] == cur[0]) in MixMatches3()
604 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);