HomeSort by relevance Sort by last modified time
    Searched full:curmatch (Results 1 - 19 of 19) sorted by null

  /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/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/chromium_org/third_party/lzma_sdk/
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,
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzFind.c 323 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
327 son[_cyclicBufferPos] = curMatch;
330 UInt32 delta = pos - curMatch;
335 curMatch = son[_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)];
354 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
363 UInt32 delta = pos - curMatch;
393 *ptr1 = curMatch;
395 curMatch = *ptr1;
400 *ptr0 = curMatch;
402 curMatch = *ptr0
    [all...]
LzFind.h 77 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
  /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/zlib/src/contrib/amd64/
amd64-match.S 19 #define curmatch rsi define
143 /* uInt longest_match(deflate_state *deflatestate, IPos curmatch) */
147 * Retrieve the function arguments. %curmatch will hold cur_match
251 movzwl (%prev, %curmatch, 2), %curmatchd
256 LoopEntry: cmpw -1(%windowbestlen, %curmatch), %scanendw
258 cmpw %scanstartw, (%window, %curmatch)
270 lea (%curmatch, %window), %windowbestlen
  /external/zlib/src/contrib/asm686/
match.S 53 #define curmatch 60 define
85 /* uInt longest_match(deflate_state *deflatestate, IPos curmatch) */
112 movl curmatch(%esp), %ecx
215 * %ecx = curmatch
  /external/zlib/src/contrib/masmx86/
match686.asm 138 curmatch equ esp + 60 define
190 ;;; uInt longest_match(deflate_state *deflatestate, IPos curmatch)
215 mov ecx, [curmatch]
318 ;;; ecx = curmatch
  /external/chromium_org/third_party/brotli/src/
ots-lzma.patch     [all...]
  /external/zlib/src/contrib/masmx64/
gvmat64.asm 98 ; curmatch rsi
376 ;;; r8d = curmatch
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
opt-gvmat64.asm 338 ;;; r8d = curmatch
  /external/zlib/src/contrib/gcc_gvmat64/
gvmat64.S 377 ;;; r8d = curmatch
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp 959 int CurMatch;
965 while ((CurMatch = patternMatchGroup(MBB)) > 0)
966 NumMatch += CurMatch;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp 754 int curMatch;
760 while ((curMatch = patternMatchGroup(curBlk)) > 0) {
761 numMatch += curMatch;
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp 754 int curMatch;
760 while ((curMatch = patternMatchGroup(curBlk)) > 0) {
761 numMatch += curMatch;
    [all...]

Completed in 563 milliseconds