Lines Matching refs:correction
433 int correction; in LZ4HC_compress_generic() local
441 correction = new_ml - (int)(start2 - ip); in LZ4HC_compress_generic()
443 if (correction > 0) { in LZ4HC_compress_generic()
444 start2 += correction; in LZ4HC_compress_generic()
445 ref2 += correction; in LZ4HC_compress_generic()
446 ml2 -= correction; in LZ4HC_compress_generic()
486 int correction = (int)(ip + ml - start2); in LZ4HC_compress_generic() local
488 start2 += correction; in LZ4HC_compress_generic()
489 ref2 += correction; in LZ4HC_compress_generic()
490 ml2 -= correction; in LZ4HC_compress_generic()
524 int correction; in LZ4HC_compress_generic() local
530 correction = ml - (int)(start2 - ip); in LZ4HC_compress_generic()
531 if (correction > 0) { in LZ4HC_compress_generic()
532 start2 += correction; in LZ4HC_compress_generic()
533 ref2 += correction; in LZ4HC_compress_generic()
534 ml2 -= correction; in LZ4HC_compress_generic()