Home
last modified time | relevance | path

Searched refs:matchlimit (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/common/lz4/
H A Dlz4.c559 #define matchlimit (iend - LASTLITERALS) in LZ4_compressCtx() macro
637 while likely(ip < matchlimit - (STEPSIZE - 1)) { in LZ4_compressCtx()
648 if ((ip < (matchlimit - 3)) && (A32(ref) == A32(ip))) { in LZ4_compressCtx()
653 if ((ip < (matchlimit - 1)) && (A16(ref) == A16(ip))) { in LZ4_compressCtx()
657 if ((ip < matchlimit) && (*ref == *ip)) in LZ4_compressCtx()
754 #define matchlimit (iend - LASTLITERALS) in LZ4_compress64kCtx() macro
830 while (ip < matchlimit - (STEPSIZE - 1)) { in LZ4_compress64kCtx()
841 if ((ip < (matchlimit - 3)) && (A32(ref) == A32(ip))) { in LZ4_compress64kCtx()
846 if ((ip < (matchlimit - 1)) && (A16(ref) == A16(ip))) { in LZ4_compress64kCtx()
850 if ((ip < matchlimit) && (*ref == *ip)) in LZ4_compress64kCtx()