Home
last modified time | relevance | path

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

/third_party/lzma/Java/SevenZip/Compression/LZ/
H A DBinTree.java134 int 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 int matchMinPos = (_pos > _cyclicBufferSize) ? (_pos - _cyclicBufferSize) : 0; in Skip()
299 if (curMatch <= matchMinPos || count-- == 0) in Skip()
/third_party/lzma/CS/7zip/Compress/LZ/
H A 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()
/third_party/lzma/C/
H A DLzFindMt.c1004 static UInt32 * MixMatches2(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *d) in MixMatches2() argument
1015 if (c2 >= matchMinPos) in MixMatches2()
1028 static UInt32 * MixMatches3(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *d) in MixMatches3() argument
1042 if (c2 >= matchMinPos) in MixMatches3()
1058 if (c3 >= matchMinPos) in MixMatches3()
1081 UInt32 matchMinPos;
1090 matchMinPos = p->lzPos;
1093 matchMinPos -= bt[1];
1102 if (matchMinPos > hs)
1103 matchMinPos
1166 MixMatches4(CMatchFinderMt *p, UInt32 matchMinPos, UInt32 *d) MixMatches4() argument
[all...]
H A DLzFindMt.h34 typedef UInt32 * (*Mf_Mix_Matches)(void *p, UInt32 matchMinPos, UInt32 *distances);

Completed in 6 milliseconds