Searched refs:curMatch (Results 1 – 6 of 6) 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 | 322 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CL… in Hc_GetMatchesSpec() argument 326 son[_cyclicBufferPos] = curMatch; in Hc_GetMatchesSpec() 329 UInt32 delta = pos - curMatch; in Hc_GetMatchesSpec() 334 … curMatch = son[_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)]; in Hc_GetMatchesSpec() 353 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, in GetMatchesSpec1() argument 362 UInt32 delta = pos - curMatch; in GetMatchesSpec1() 392 *ptr1 = curMatch; in GetMatchesSpec1() 394 curMatch = *ptr1; in GetMatchesSpec1() 399 *ptr0 = curMatch; in GetMatchesSpec1() 401 curMatch = *ptr0; in GetMatchesSpec1() [all …]
|
D | LzFindMt.c | 241 UInt32 curMatch = pos - *hash++; in GetMatchesSpecN() local 250 UInt32 delta = pos - curMatch; in GetMatchesSpecN() 280 *ptr1 = curMatch; in GetMatchesSpecN() 282 curMatch = *ptr1; in GetMatchesSpecN() 287 *ptr0 = curMatch; in GetMatchesSpecN() 289 curMatch = *ptr0; in GetMatchesSpecN()
|
D | LzFind.h | 76 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *…
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILCFGStructurizer.cpp | 754 int curMatch; in patternMatch() local 760 while ((curMatch = patternMatchGroup(curBlk)) > 0) { in patternMatch() 761 numMatch += curMatch; in patternMatch()
|