Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/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()
450 * Now, we have start2 = ip + new_ml, in LZ4HC_compress_generic()
451 * with new_ml = min(ml, OPTIMAL_ML = 18) in LZ4HC_compress_generic()
/kernel/linux/linux-6.6/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()
450 * Now, we have start2 = ip + new_ml, in LZ4HC_compress_generic()
451 * with new_ml = min(ml, OPTIMAL_ML = 18) in LZ4HC_compress_generic()

Completed in 3 milliseconds