index_msb         333 arch/x86/include/asm/apic.h 	int	(*phys_pkg_id)(int cpuid_apic, int index_msb);
index_msb          99 arch/x86/kernel/apic/apic_flat_64.c static int flat_phys_pkg_id(int initial_apic_id, int index_msb)
index_msb         101 arch/x86/kernel/apic/apic_flat_64.c 	return initial_apic_id >> index_msb;
index_msb          41 arch/x86/kernel/apic/apic_noop.c static int noop_phys_pkg_id(int cpuid_apic, int index_msb)
index_msb          70 arch/x86/kernel/apic/apic_numachip.c static int numachip_phys_pkg_id(int initial_apic_id, int index_msb)
index_msb          72 arch/x86/kernel/apic/apic_numachip.c 	return initial_apic_id >> index_msb;
index_msb          70 arch/x86/kernel/apic/bigsmp_32.c static int bigsmp_phys_pkg_id(int cpuid_apic, int index_msb)
index_msb          72 arch/x86/kernel/apic/bigsmp_32.c 	return cpuid_apic >> index_msb;
index_msb          24 arch/x86/kernel/apic/local.h int x2apic_phys_pkg_id(int initial_apicid, int index_msb);
index_msb          52 arch/x86/kernel/apic/probe_32.c static int default_phys_pkg_id(int cpuid_apic, int index_msb)
index_msb          54 arch/x86/kernel/apic/probe_32.c 	return cpuid_apic >> index_msb;
index_msb         133 arch/x86/kernel/apic/x2apic_phys.c int x2apic_phys_pkg_id(int initial_apicid, int index_msb)
index_msb         135 arch/x86/kernel/apic/x2apic_phys.c 	return initial_apicid >> index_msb;
index_msb         627 arch/x86/kernel/apic/x2apic_uv_x.c static int uv_phys_pkg_id(int initial_apicid, int index_msb)
index_msb         629 arch/x86/kernel/apic/x2apic_uv_x.c 	return uv_read_apic_id() >> index_msb;
index_msb         727 arch/x86/kernel/cpu/cacheinfo.c 	unsigned int l2_id = 0, l3_id = 0, num_threads_sharing, index_msb;
index_msb         763 arch/x86/kernel/cpu/cacheinfo.c 				index_msb = get_count_order(num_threads_sharing);
index_msb         764 arch/x86/kernel/cpu/cacheinfo.c 				l2_id = c->apicid & ~((1 << index_msb) - 1);
index_msb         769 arch/x86/kernel/cpu/cacheinfo.c 				index_msb = get_count_order(num_threads_sharing);
index_msb         770 arch/x86/kernel/cpu/cacheinfo.c 				l3_id = c->apicid & ~((1 << index_msb) - 1);
index_msb         940 arch/x86/kernel/cpu/cacheinfo.c 	int index_msb, i;
index_msb         956 arch/x86/kernel/cpu/cacheinfo.c 	index_msb = get_count_order(num_threads_sharing);
index_msb         959 arch/x86/kernel/cpu/cacheinfo.c 		if (cpu_data(i).apicid >> index_msb == c->apicid >> index_msb) {
index_msb        1010 arch/x86/kernel/cpu/cacheinfo.c 	int index_msb;
index_msb        1013 arch/x86/kernel/cpu/cacheinfo.c 	index_msb = get_count_order(num_threads_sharing);
index_msb        1014 arch/x86/kernel/cpu/cacheinfo.c 	id4_regs->id = c->apicid >> index_msb;
index_msb         754 arch/x86/kernel/cpu/common.c 	int index_msb, core_bits;
index_msb         759 arch/x86/kernel/cpu/common.c 	index_msb = get_count_order(smp_num_siblings);
index_msb         760 arch/x86/kernel/cpu/common.c 	c->phys_proc_id = apic->phys_pkg_id(c->initial_apicid, index_msb);
index_msb         764 arch/x86/kernel/cpu/common.c 	index_msb = get_count_order(smp_num_siblings);
index_msb         768 arch/x86/kernel/cpu/common.c 	c->cpu_core_id = apic->phys_pkg_id(c->initial_apicid, index_msb) &
index_msb         130 arch/x86/kernel/vsmp_64.c static int apicid_phys_pkg_id(int initial_apic_id, int index_msb)
index_msb         132 arch/x86/kernel/vsmp_64.c 	return hard_smp_processor_id() >> index_msb;
index_msb         125 arch/x86/xen/apic.c static int xen_phys_pkg_id(int initial_apic_id, int index_msb)
index_msb         127 arch/x86/xen/apic.c 	return initial_apic_id >> index_msb;