Home
last modified time | relevance | path

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

/linux/lib/lz4/
H A Dlz4hc_compress.c433 int new_ml = ml; in LZ4HC_compress_generic() local
435 if (new_ml > OPTIMAL_ML) in LZ4HC_compress_generic()
436 new_ml = OPTIMAL_ML; in LZ4HC_compress_generic()
437 if (ip + new_ml > start2 + ml2 - MINMATCH) in LZ4HC_compress_generic()
438 new_ml = (int)(start2 - ip) + ml2 - MINMATCH; in LZ4HC_compress_generic()
440 correction = new_ml - (int)(start2 - ip); in LZ4HC_compress_generic()