Searched refs:curMatch (Results 1 – 5 of 5) sorted by relevance
/external/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 150 int curMatch = _hash[kFixHashSize + hashValue]; in GetMatches() local 172 if (offset != 0 && curMatch2 == curMatch) in GetMatches() 189 if (curMatch > matchMinPos) in GetMatches() 191 if (_bufferBase[_bufferOffset + curMatch + kNumHashDirectBytes] != in GetMatches() 195 distances[offset++] = _pos - curMatch - 1; in GetMatches() 204 if (curMatch <= matchMinPos || count-- == 0) in GetMatches() 209 int delta = _pos - curMatch; in GetMatches() 214 int pby1 = _bufferOffset + curMatch; in GetMatches() 235 _son[ptr1] = curMatch; in GetMatches() 237 curMatch = _son[ptr1]; in GetMatches() [all …]
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzBinTree.cs | 150 UInt32 curMatch = _hash[kFixHashSize + hashValue]; in GetMatches() 172 if (offset != 0 && curMatch2 == curMatch) in GetMatches() 189 if (curMatch > matchMinPos) in GetMatches() 191 if (_bufferBase[_bufferOffset + curMatch + kNumHashDirectBytes] != in GetMatches() 195 distances[offset++] = _pos - curMatch - 1; in GetMatches() 204 if(curMatch <= matchMinPos || count-- == 0) in GetMatches() 209 UInt32 delta = _pos - curMatch; in GetMatches() 214 UInt32 pby1 = _bufferOffset + curMatch; in GetMatches() 235 _son[ptr1] = curMatch; in GetMatches() 237 curMatch = _son[ptr1]; in GetMatches() [all …]
|
/external/lzma/C/ |
D | LzFind.c | 389 static UInt32 * Hc_GetMatchesSpec(unsigned lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, … in Hc_GetMatchesSpec() argument 423 son[_cyclicBufferPos] = curMatch; in Hc_GetMatchesSpec() 426 UInt32 delta = pos - curMatch; in Hc_GetMatchesSpec() 431 … curMatch = son[_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)]; in Hc_GetMatchesSpec() 465 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, in GetMatchesSpec1() argument 474 UInt32 delta = pos - curMatch; in GetMatchesSpec1() 506 *ptr1 = curMatch; in GetMatchesSpec1() 508 curMatch = *ptr1; in GetMatchesSpec1() 513 *ptr0 = curMatch; in GetMatchesSpec1() 515 curMatch = *ptr0; in GetMatchesSpec1() [all …]
|
D | LzFind.h | 81 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *…
|
D | LzFindMt.c | 307 UInt32 curMatch = pos - delta; in GetMatchesSpecN() local 313 *ptr1 = curMatch; in GetMatchesSpecN() 320 *ptr0 = curMatch; in GetMatchesSpecN()
|