Searched refs:matchlimit (Results 1 – 2 of 2) sorted by relevance
/lz4-3.4.0-2.7.6/lib/ |
D | lz4hc.c | 567 const BYTE* const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_hashChain() local 589 …ml = LZ4HC_InsertAndFindBestMatch(ctx, ip, matchlimit, &ref, maxNbAttempts, patternAnalysis, dict); in LZ4HC_compress_hashChain() 598 ip + ml - 2, ip + 0, matchlimit, ml, &ref2, &start2, in LZ4HC_compress_hashChain() 643 start2 + ml2 - 3, start2, matchlimit, ml2, &ref3, &start3, in LZ4HC_compress_hashChain() 1342 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4HC_compress_optimal() local 1364 …LZ4HC_match_t const firstMatch = LZ4HC_FindLongerMatch(ctx, ip, matchlimit, MINMATCH-1, nbSearches… in LZ4HC_compress_optimal() 1437 …newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, MINMATCH-1, nbSearches, dict, favorDecSp… in LZ4HC_compress_optimal() 1440 …newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, last_match_pos - cur, nbSearches, dict, … in LZ4HC_compress_optimal()
|
D | lz4.c | 884 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic_validated() local 1082 if (limit > matchlimit) limit = matchlimit; in LZ4_compress_generic_validated() 1086 unsigned const more = LZ4_count(limit, (const BYTE*)source, matchlimit); in LZ4_compress_generic_validated() 1092 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); in LZ4_compress_generic_validated()
|