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.c434 int new_ml = ml; in LZ4HC_compress_generic() local
436 if (new_ml > OPTIMAL_ML) in LZ4HC_compress_generic()
437 new_ml = OPTIMAL_ML; in LZ4HC_compress_generic()
438 if (ip + new_ml > start2 + ml2 - MINMATCH) in LZ4HC_compress_generic()
439 new_ml = (int)(start2 - ip) + ml2 - MINMATCH; in LZ4HC_compress_generic()
441 correction = new_ml - (int)(start2 - ip); in LZ4HC_compress_generic()