Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.cpp2609 static kmp_hw_t __kmp_intel_type_2_topology_type(int intel_type) { in __kmp_intel_type_2_topology_type() argument
2610 switch (intel_type) { in __kmp_intel_type_2_topology_type()
2655 bool contains(int intel_type) const { in contains()
2656 KMP_DEBUG_ASSERT(intel_type >= 0 && intel_type < INTEL_LEVEL_TYPE_LAST); in contains()
2657 if ((1u << intel_type) & desc) in contains()
2663 int intel_type = __kmp_topology_type_2_intel_type(type); in contains_topology_type() local
2664 return contains(intel_type); in contains_topology_type()
2669 void add(int intel_type) { desc |= (1u << intel_type); } in add() argument