Lines Matching refs:ml2
503 int ml0, ml, ml2, ml3; in LZ4HC_compress_hashChain() local
527 ml2 = LZ4HC_InsertAndGetWiderMatch(ctx, in LZ4HC_compress_hashChain()
531 ml2 = ml; in LZ4HC_compress_hashChain()
534 if (ml2 == ml) { /* No better match => encode ML1 */ in LZ4HC_compress_hashChain()
547 ml = ml2; in LZ4HC_compress_hashChain()
561 if (ip+new_ml > start2 + ml2 - MINMATCH) new_ml = (int)(start2 - ip) + ml2 - MINMATCH; in LZ4HC_compress_hashChain()
566 ml2 -= correction; in LZ4HC_compress_hashChain()
571 if (start2 + ml2 <= mflimit) { in LZ4HC_compress_hashChain()
573 start2 + ml2 - 3, start2, matchlimit, ml2, &ref3, &start3, in LZ4HC_compress_hashChain()
576 ml3 = ml2; in LZ4HC_compress_hashChain()
579 if (ml3 == ml2) { /* No better match => encode ML1 and ML2 */ in LZ4HC_compress_hashChain()
587 … if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml2, ref2, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
597 ml2 -= correction; in LZ4HC_compress_hashChain()
598 if (ml2 < MINMATCH) { in LZ4HC_compress_hashChain()
601 ml2 = ml3; in LZ4HC_compress_hashChain()
613 ml0 = ml2; in LZ4HC_compress_hashChain()
619 ml2 = ml3; in LZ4HC_compress_hashChain()
632 if (ip + ml > start2 + ml2 - MINMATCH) ml = (int)(start2 - ip) + ml2 - MINMATCH; in LZ4HC_compress_hashChain()
637 ml2 -= correction; in LZ4HC_compress_hashChain()
647 ip = start2; ref = ref2; ml = ml2; in LZ4HC_compress_hashChain()
650 start2 = start3; ref2 = ref3; ml2 = ml3; in LZ4HC_compress_hashChain()