Home
last modified time | relevance | path

Searched refs:ml2 (Results 1 – 4 of 4) sorted by relevance

/freebsd-13-stable/sys/contrib/zstd/lib/compress/
HDzstd_lazy.c970 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 …]
/freebsd-13-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
HDmerge.c285 mlist_t *ml1 = stdp->t_members, *ml2 = ttdp->t_members; in equiv_su() local
287 while (ml1 && ml2) { in equiv_su()
288 if (ml1->ml_offset != ml2->ml_offset || in equiv_su()
289 strcmp(ml1->ml_name, ml2->ml_name) != 0 || in equiv_su()
290 ml1->ml_size != ml2->ml_size || in equiv_su()
291 !equiv_node(ml1->ml_type, ml2->ml_type, ed)) in equiv_su()
295 ml2 = ml2->ml_next; in equiv_su()
298 if (ml1 || ml2) in equiv_su()
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
HDzstd.c19100 size_t const ml2 = searchMax(ms, ip, iend, &offsetFound); in ZSTD_compressBlock_lazy_generic() local
19101 if (ml2 > matchLength) in ZSTD_compressBlock_lazy_generic()
19102 matchLength = ml2, start = ip, offset=offsetFound; in ZSTD_compressBlock_lazy_generic()
19138 size_t const ml2 = searchMax(ms, ip, iend, &offset2); in ZSTD_compressBlock_lazy_generic() local
19139 int const gain2 = (int)(ml2*4 - ZSTD_highbit32((U32)offset2+1)); /* raw approx */ in ZSTD_compressBlock_lazy_generic()
19141 if ((ml2 >= 4) && (gain2 > gain1)) { in ZSTD_compressBlock_lazy_generic()
19142 matchLength = ml2, offset = offset2, start = ip; in ZSTD_compressBlock_lazy_generic()
19173 size_t const ml2 = searchMax(ms, ip, iend, &offset2); in ZSTD_compressBlock_lazy_generic() local
19174 … int const gain2 = (int)(ml2*4 - ZSTD_highbit32((U32)offset2+1)); /* raw approx */ in ZSTD_compressBlock_lazy_generic()
19176 if ((ml2 >= 4) && (gain2 > gain1)) { in ZSTD_compressBlock_lazy_generic()
[all …]
/freebsd-13-stable/sys/arm64/arm64/
HDpmap.c6533 vm_page_t ml2; in pmap_demote_l1() local
6554 if ((ml2 = vm_page_alloc_noobj(VM_ALLOC_INTERRUPT | VM_ALLOC_WIRED)) == in pmap_demote_l1()
6562 l2phys = VM_PAGE_TO_PHYS(ml2); in pmap_demote_l1()