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

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

Completed in 185 milliseconds