Searched refs:mlRep (Results 1 – 1 of 1) sorted by relevance
/linux-6.1.9/lib/zstd/compress/ |
D | zstd_lazy.c | 988 size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4; in ZSTD_compressBlock_lazy_generic() local 989 int const gain2 = (int)(mlRep * 3); in ZSTD_compressBlock_lazy_generic() 991 if ((mlRep >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_generic() 992 matchLength = mlRep, offset = 0, start = ip; in ZSTD_compressBlock_lazy_generic() 1002 … size_t const mlRep = ZSTD_count_2segments(ip+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4; in ZSTD_compressBlock_lazy_generic() local 1003 int const gain2 = (int)(mlRep * 3); in ZSTD_compressBlock_lazy_generic() 1005 if ((mlRep >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_generic() 1006 matchLength = mlRep, offset = 0, start = ip; in ZSTD_compressBlock_lazy_generic() 1023 size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4; in ZSTD_compressBlock_lazy_generic() local 1024 int const gain2 = (int)(mlRep * 4); in ZSTD_compressBlock_lazy_generic() [all …]
|