Searched refs:repLength (Results 1 – 1 of 1) sorted by relevance
| /freebsd-12.1/sys/contrib/zstd/lib/compress/ |
| H A D | zstd_lazy.c | 702 … size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4; in ZSTD_compressBlock_lazy_extDict_generic() local 703 int const gain2 = (int)(repLength * 3); in ZSTD_compressBlock_lazy_extDict_generic() 705 if ((repLength >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_extDict_generic() 706 matchLength = repLength, offset = 0, start = ip; in ZSTD_compressBlock_lazy_extDict_generic() 732 … size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4; in ZSTD_compressBlock_lazy_extDict_generic() local 733 int const gain2 = (int)(repLength * 4); in ZSTD_compressBlock_lazy_extDict_generic() 735 if ((repLength >= 4) && (gain2 > gain1)) in ZSTD_compressBlock_lazy_extDict_generic() 736 matchLength = repLength, offset = 0, start = ip; in ZSTD_compressBlock_lazy_extDict_generic()
|