HomeSort by relevance Sort by last modified time
    Searched refs:curMatch (Results 1 - 6 of 6) sorted by null

  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 150 int curMatch = _hash[kFixHashSize + hashValue];
172 if (offset != 0 && curMatch2 == curMatch)
189 if (curMatch > matchMinPos)
191 if (_bufferBase[_bufferOffset + curMatch + kNumHashDirectBytes] !=
195 distances[offset++] = _pos - curMatch - 1;
204 if (curMatch <= matchMinPos || count-- == 0)
209 int delta = _pos - curMatch;
214 int pby1 = _bufferOffset + curMatch;
235 _son[ptr1] = curMatch;
237 curMatch = _son[ptr1];
    [all...]
  /external/lzma/CS/7zip/Compress/LZ/
LzBinTree.cs 150 UInt32 curMatch = _hash[kFixHashSize + hashValue];
172 if (offset != 0 && curMatch2 == curMatch)
189 if (curMatch > matchMinPos)
191 if (_bufferBase[_bufferOffset + curMatch + kNumHashDirectBytes] !=
195 distances[offset++] = _pos - curMatch - 1;
204 if(curMatch <= matchMinPos || count-- == 0)
209 UInt32 delta = _pos - curMatch;
214 UInt32 pby1 = _bufferOffset + curMatch;
235 _son[ptr1] = curMatch;
237 curMatch = _son[ptr1];
    [all...]
  /external/lzma/C/
LzFind.c 322 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
326 son[_cyclicBufferPos] = curMatch;
329 UInt32 delta = pos - curMatch;
334 curMatch = son[_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)];
353 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
362 UInt32 delta = pos - curMatch;
392 *ptr1 = curMatch;
394 curMatch = *ptr1;
399 *ptr0 = curMatch;
401 curMatch = *ptr0;
    [all...]
LzFind.h 76 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
LzFindMt.c 241 UInt32 curMatch = pos - *hash++;
250 UInt32 delta = pos - curMatch;
280 *ptr1 = curMatch;
282 curMatch = *ptr1;
287 *ptr0 = curMatch;
289 curMatch = *ptr0;
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp 754 int curMatch;
760 while ((curMatch = patternMatchGroup(curBlk)) > 0) {
761 numMatch += curMatch;
    [all...]

Completed in 186 milliseconds