Searched refs:mlRep (Results 1 – 1 of 1) sorted by relevance
| /linux/lib/zstd/compress/ |
| H A D | zstd_lazy.c | 1635 size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4; in ZSTD_compressBlock_lazy_generic() local 1636 int const gain2 = (int)(mlRep * 3); in ZSTD_compressBlock_lazy_generic() 1638 if ((mlRep >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_generic() 1639 matchLength = mlRep, offBase = REPCODE1_TO_OFFBASE, start = ip; in ZSTD_compressBlock_lazy_generic() 1649 … size_t const mlRep = ZSTD_count_2segments(ip+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4; in ZSTD_compressBlock_lazy_generic() local 1650 int const gain2 = (int)(mlRep * 3); in ZSTD_compressBlock_lazy_generic() 1652 if ((mlRep >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_generic() 1653 matchLength = mlRep, offBase = REPCODE1_TO_OFFBASE, start = ip; in ZSTD_compressBlock_lazy_generic() 1671 size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4; in ZSTD_compressBlock_lazy_generic() local 1672 int const gain2 = (int)(mlRep * 4); in ZSTD_compressBlock_lazy_generic() [all …]
|