Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c497 const BYTE* const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_hashChain() local
519 …ml = LZ4HC_InsertAndFindBestMatch (ctx, ip, matchlimit, &ref, maxNbAttempts, patternAnalysis, dict… in LZ4HC_compress_hashChain()
528 ip + ml - 2, ip + 0, matchlimit, ml, &ref2, &start2, in LZ4HC_compress_hashChain()
573 start2 + ml2 - 3, start2, matchlimit, ml2, &ref3, &start3, in LZ4HC_compress_hashChain()
1172 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4HC_compress_optimal() local
1190 …LZ4HC_match_t const firstMatch = LZ4HC_FindLongerMatch(ctx, ip, matchlimit, MINMATCH-1, nbSearches… in LZ4HC_compress_optimal()
1260 …newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, MINMATCH-1, nbSearches, dict, favorDecSp… in LZ4HC_compress_optimal()
1263 …newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, last_match_pos - cur, nbSearches, dict, … in LZ4HC_compress_optimal()
Dlz4.c681 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic() local
871 if (limit > matchlimit) limit = matchlimit; in LZ4_compress_generic()
875 unsigned const more = LZ4_count(limit, (const BYTE*)source, matchlimit); in LZ4_compress_generic()
881 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); in LZ4_compress_generic()