Searched refs:repLength (Results 1 – 1 of 1) sorted by relevance
/linux-6.6.21/lib/zstd/compress/ |
D | zstd_lazy.c | 1952 … size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4; in ZSTD_compressBlock_lazy_extDict_generic() local 1953 int const gain2 = (int)(repLength * 3); in ZSTD_compressBlock_lazy_extDict_generic() 1955 if ((repLength >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_extDict_generic() 1956 matchLength = repLength, offcode = STORE_REPCODE_1, start = ip; in ZSTD_compressBlock_lazy_extDict_generic() 1984 … size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4; in ZSTD_compressBlock_lazy_extDict_generic() local 1985 int const gain2 = (int)(repLength * 4); in ZSTD_compressBlock_lazy_extDict_generic() 1987 if ((repLength >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_extDict_generic() 1988 matchLength = repLength, offcode = STORE_REPCODE_1, start = ip; in ZSTD_compressBlock_lazy_extDict_generic()
|