Lines Matching defs:mlRep
1583 size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4;
1584 int const gain2 = (int)(mlRep * 3);
1586 if ((mlRep >= 4) && (gain2 > gain1))
1587 matchLength = mlRep, offcode = STORE_REPCODE_1, start = ip;
1597 size_t const mlRep = ZSTD_count_2segments(ip+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4;
1598 int const gain2 = (int)(mlRep * 3);
1600 if ((mlRep >= 4) && (gain2 > gain1))
1601 matchLength = mlRep, offcode = STORE_REPCODE_1, start = ip;
1619 size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4;
1620 int const gain2 = (int)(mlRep * 4);
1622 if ((mlRep >= 4) && (gain2 > gain1))
1623 matchLength = mlRep, offcode = STORE_REPCODE_1, start = ip;
1633 size_t const mlRep = ZSTD_count_2segments(ip+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4;
1634 int const gain2 = (int)(mlRep * 4);
1636 if ((mlRep >= 4) && (gain2 > gain1))
1637 matchLength = mlRep, offcode = STORE_REPCODE_1, start = ip;