Searched refs:repLength (Results 1 – 1 of 1) sorted by relevance
| /linux/lib/zstd/compress/ |
| H A D | zstd_lazy.c | 2036 … size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4; in ZSTD_compressBlock_lazy_extDict_generic() local 2037 int const gain2 = (int)(repLength * 3); in ZSTD_compressBlock_lazy_extDict_generic() 2039 if ((repLength >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_extDict_generic() 2040 matchLength = repLength, offBase = REPCODE1_TO_OFFBASE, start = ip; in ZSTD_compressBlock_lazy_extDict_generic() 2068 … size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4; in ZSTD_compressBlock_lazy_extDict_generic() local 2069 int const gain2 = (int)(repLength * 4); in ZSTD_compressBlock_lazy_extDict_generic() 2071 if ((repLength >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_extDict_generic() 2072 matchLength = repLength, offBase = REPCODE1_TO_OFFBASE, start = ip; in ZSTD_compressBlock_lazy_extDict_generic()
|