Home
last modified time | relevance | path

Searched refs:mask_width (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/tcpdump/
H A Dprint-bootp.c908 u_int mask_width, significant_octets, i; in rfc1048_print() local
920 mask_width = GET_U_1(bp); in rfc1048_print()
924 if (mask_width > 32) { in rfc1048_print()
925 ND_PRINT("[ERROR: Mask width (%u) > 32]", mask_width); in rfc1048_print()
930 significant_octets = (mask_width + 7) / 8; in rfc1048_print()
939 if (mask_width == 0) in rfc1048_print()
951 ND_PRINT("/%u", mask_width); in rfc1048_print()
/freebsd/sys/x86/x86/
H A Dmp_x86.c189 mask_width(u_int x) in mask_width() function
218 mask_width(share_count)); in add_deterministic_cache()
220 caches[level - 1].id_shift = mask_width(share_count); in add_deterministic_cache()
287 mask_width((cpu_procinfo2 & AMDID_CMP_CORES) + 1); in topo_probe_amd()
302 core_id_shift = mask_width(share_count); in topo_probe_amd()
311 node_id_shift = pkg_id_shift - mask_width(nodes_per_socket); in topo_probe_amd()
350 pkg_id_shift - mask_width(nodes_per_socket); in topo_probe_amd()
385 core_id_shift = mask_width(max_logical/max_cores); in topo_probe_intel_0x4()
388 pkg_id_shift = core_id_shift + mask_width(max_cores); in topo_probe_intel_0x4()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.cpp2548 unsigned level_type, mask, mask_width, nitems, cache_mask; member
2577 unsigned level_type, mask_width, nitems; in __kmp_x2apicid_get_levels() local
2591 mask_width = __kmp_extract_bits<0, 4>(buf.eax); in __kmp_x2apicid_get_levels()
2600 levels[levels_index].mask_width = mask_width; in __kmp_x2apicid_get_levels()
2606 levels[levels_index - 1].mask_width = mask_width; in __kmp_x2apicid_get_levels()
2620 levels[i].mask = ~((-1) << levels[i].mask_width); in __kmp_x2apicid_get_levels()
2621 levels[i].cache_mask = (-1) << levels[i].mask_width; in __kmp_x2apicid_get_levels()
2626 levels[i].mask = (-1) << levels[i - 1].mask_width; in __kmp_x2apicid_get_levels()
2789 hw_thread.ids[idx] >>= my_levels[j - 1].mask_width; in __kmp_affinity_create_x2apicid_map()