Lines Matching defs:apicid
825 u_int32_t apicid, max_apicid = 0, max_coreid = 0;
829 /* We need at least apicid at CPUID 1 */
833 /* Initial apicid */
835 apicid = (ebx >> 24) & 0xff;
841 /* We need at least apicid at CPUID 0x80000008 */
854 ci->ci_pkg_id = apicid >> core_bits;
858 thread_id = apicid & core_mask;
884 ci->ci_smt_id = apicid & smt_mask;
885 ci->ci_core_id = (apicid & core_mask) >> smt_bits;
886 ci->ci_pkg_id = (apicid & pkg_mask) >> pkg_bits;
891 "(apicid 0x%x, max_apicid 0x%x, max_coreid 0x%x, smt_bits 0x%x, smt_mask 0x%x, "
894 apicid, max_apicid, max_coreid, smt_bits, smt_mask, core_bits,