Lines Matching refs:ebx
26 #define LEVEL_MAX_SIBLINGS(ebx) ((ebx) & 0xffff) argument
37 unsigned int eax, ebx, ecx, edx; in check_extended_topology_leaf() local
39 cpuid_count(leaf, SMT_LEVEL, &eax, &ebx, &ecx, &edx); in check_extended_topology_leaf()
41 if (ebx == 0 || (LEAFB_SUBTYPE(ecx) != SMT_TYPE)) in check_extended_topology_leaf()
68 unsigned int eax, ebx, ecx, edx; in detect_extended_topology_early() local
77 cpuid_count(leaf, SMT_LEVEL, &eax, &ebx, &ecx, &edx); in detect_extended_topology_early()
82 smp_num_siblings = max_t(int, smp_num_siblings, LEVEL_MAX_SIBLINGS(ebx)); in detect_extended_topology_early()
95 unsigned int eax, ebx, ecx, edx, sub_index; in detect_extended_topology() local
110 cpuid_count(leaf, SMT_LEVEL, &eax, &ebx, &ecx, &edx); in detect_extended_topology()
112 core_level_siblings = LEVEL_MAX_SIBLINGS(ebx); in detect_extended_topology()
113 smp_num_siblings = max_t(int, smp_num_siblings, LEVEL_MAX_SIBLINGS(ebx)); in detect_extended_topology()
115 die_level_siblings = LEVEL_MAX_SIBLINGS(ebx); in detect_extended_topology()
120 cpuid_count(leaf, sub_index, &eax, &ebx, &ecx, &edx); in detect_extended_topology()
126 core_level_siblings = LEVEL_MAX_SIBLINGS(ebx); in detect_extended_topology()
133 die_level_siblings = LEVEL_MAX_SIBLINGS(ebx); in detect_extended_topology()