Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c550 const BYTE* const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_hashChain() local
572 …ml = LZ4HC_InsertAndFindBestMatch(ctx, ip, matchlimit, &ref, maxNbAttempts, patternAnalysis, dict); in LZ4HC_compress_hashChain()
581 ip + ml - 2, ip + 0, matchlimit, ml, &ref2, &start2, in LZ4HC_compress_hashChain()
626 start2 + ml2 - 3, start2, matchlimit, ml2, &ref3, &start3, in LZ4HC_compress_hashChain()
1297 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4HC_compress_optimal() local
1315 …LZ4HC_match_t const firstMatch = LZ4HC_FindLongerMatch(ctx, ip, matchlimit, MINMATCH-1, nbSearches… in LZ4HC_compress_optimal()
1385 …newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, MINMATCH-1, nbSearches, dict, favorDecSp… in LZ4HC_compress_optimal()
1388 …newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, last_match_pos - cur, nbSearches, dict, … in LZ4HC_compress_optimal()
Dlz4.c822 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic() local
1020 if (limit > matchlimit) limit = matchlimit; in LZ4_compress_generic()
1024 unsigned const more = LZ4_count(limit, (const BYTE*)source, matchlimit); in LZ4_compress_generic()
1030 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); in LZ4_compress_generic()