Home
last modified time | relevance | path

Searched refs:mlRep (Results 1 – 1 of 1) sorted by relevance

/linux-6.6.21/lib/zstd/compress/
Dzstd_lazy.c1583 size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4; in ZSTD_compressBlock_lazy_generic() local
1584 int const gain2 = (int)(mlRep * 3); in ZSTD_compressBlock_lazy_generic()
1586 if ((mlRep >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_generic()
1587 matchLength = mlRep, offcode = STORE_REPCODE_1, start = ip; in ZSTD_compressBlock_lazy_generic()
1597 … size_t const mlRep = ZSTD_count_2segments(ip+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4; in ZSTD_compressBlock_lazy_generic() local
1598 int const gain2 = (int)(mlRep * 3); in ZSTD_compressBlock_lazy_generic()
1600 if ((mlRep >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_generic()
1601 matchLength = mlRep, offcode = STORE_REPCODE_1, start = ip; in ZSTD_compressBlock_lazy_generic()
1619 size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4; in ZSTD_compressBlock_lazy_generic() local
1620 int const gain2 = (int)(mlRep * 4); in ZSTD_compressBlock_lazy_generic()
[all …]