Searched refs:ml2 (Results 1 – 1 of 1) sorted by relevance
| /dragonfly/contrib/zstd/lib/compress/ |
| HD | zstd_lazy.c | 970 size_t const ml2 = searchMax(ms, ip, iend, &offsetFound); in ZSTD_compressBlock_lazy_generic() local 971 if (ml2 > matchLength) in ZSTD_compressBlock_lazy_generic() 972 matchLength = ml2, start = ip, offset=offsetFound; in ZSTD_compressBlock_lazy_generic() 1008 size_t const ml2 = searchMax(ms, ip, iend, &offset2); in ZSTD_compressBlock_lazy_generic() local 1009 int const gain2 = (int)(ml2*4 - ZSTD_highbit32((U32)offset2+1)); /* raw approx */ in ZSTD_compressBlock_lazy_generic() 1011 if ((ml2 >= 4) && (gain2 > gain1)) { in ZSTD_compressBlock_lazy_generic() 1012 matchLength = ml2, offset = offset2, start = ip; in ZSTD_compressBlock_lazy_generic() 1043 size_t const ml2 = searchMax(ms, ip, iend, &offset2); in ZSTD_compressBlock_lazy_generic() local 1044 … int const gain2 = (int)(ml2*4 - ZSTD_highbit32((U32)offset2+1)); /* raw approx */ in ZSTD_compressBlock_lazy_generic() 1046 if ((ml2 >= 4) && (gain2 > gain1)) { in ZSTD_compressBlock_lazy_generic() [all …]
|