Searched refs:matchlimit (Results 1 - 2 of 2) sorted by relevance
/third_party/lz4/lib/ |
H A D | lz4hc.c | 571 const BYTE* const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_hashChain() local 593 ml = LZ4HC_InsertAndFindBestMatch(ctx, ip, matchlimit, &ref, maxNbAttempts, patternAnalysis, dict); in LZ4HC_compress_hashChain() 602 ip + ml - 2, ip + 0, matchlimit, ml, &ref2, &start2, in LZ4HC_compress_hashChain() 647 start2 + ml2 - 3, start2, matchlimit, ml2, &ref3, &start3, in LZ4HC_compress_hashChain() 1354 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4HC_compress_optimal() local 1376 LZ4HC_match_t const firstMatch = LZ4HC_FindLongerMatch(ctx, ip, matchlimit, MINMATCH-1, nbSearches, dict, favorDecSpeed); in LZ4HC_compress_optimal() 1449 newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, MINMATCH-1, nbSearches, dict, favorDecSpeed); in LZ4HC_compress_optimal() 1452 newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, last_match_pos - cur, nbSearches, dict, favorDecSpeed); in LZ4HC_compress_optimal()
|
H A D | lz4.c | 943 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic_validated() local 1143 if (limit > matchlimit) limit = matchlimit; in LZ4_compress_generic_validated() 1147 unsigned const more = LZ4_count(limit, (const BYTE*)source, matchlimit); in LZ4_compress_generic_validated() 1153 matchCode = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit); in LZ4_compress_generic_validated()
|
Completed in 8 milliseconds