Home
last modified time | relevance | path

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

/third_party/lz4/lib/
Dlz4hc.c1415 LZ4HC_match_t newMatch; in LZ4HC_compress_optimal() local
1433newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, MINMATCH-1, nbSearches, dict, favorDecSp… in LZ4HC_compress_optimal()
1436newMatch = LZ4HC_FindLongerMatch(ctx, curPtr, matchlimit, last_match_pos - cur, nbSearches, dict, … in LZ4HC_compress_optimal()
1437 if (!newMatch.len) continue; in LZ4HC_compress_optimal()
1439 if ( ((size_t)newMatch.len > sufficient_len) in LZ4HC_compress_optimal()
1440 || (newMatch.len + cur >= LZ4_OPT_NUM) ) { in LZ4HC_compress_optimal()
1442 best_mlen = newMatch.len; in LZ4HC_compress_optimal()
1443 best_off = newMatch.off; in LZ4HC_compress_optimal()
1464 { int const matchML = newMatch.len; in LZ4HC_compress_optimal()
1467 assert(cur + newMatch.len < LZ4_OPT_NUM); in LZ4HC_compress_optimal()
[all …]