Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c345 const BYTE* const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_generic() local
372 ml = LZ4HC_InsertAndFindBestMatch (ctx, ip, matchlimit, (&ref), maxNbAttempts); in LZ4HC_compress_generic()
382 …ml2 = LZ4HC_InsertAndGetWiderMatch(ctx, ip + ml - 2, ip + 1, matchlimit, ml, &ref2, &start2, maxNb… in LZ4HC_compress_generic()
433 …ml3 = LZ4HC_InsertAndGetWiderMatch(ctx, start2 + ml2 - 3, start2, matchlimit, ml2, &ref3, &start3,… in LZ4HC_compress_generic()
Dlz4.c521 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic() local
631 if (limit > matchlimit) limit = matchlimit; in LZ4_compress_generic()
636 unsigned more = LZ4_count(ip, (const BYTE*)source, matchlimit); in LZ4_compress_generic()
643 matchLength = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); in LZ4_compress_generic()