HomeSort by: relevance | last modified time | path
    Searched defs:core_max (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/x86/x86/
cpu_topology.c 80 u_int core_max; /* Core per package */ local in function:x86_cpu_topology
128 core_max = __SHIFTOUT(descs[0], CPUID_DCP_CORE_P_PKG)
131 core_max = 1;
137 core_max = 1;
142 core_max = lp_max;
148 core_max = __SHIFTOUT(descs[2], CPUID_CAPEX_NC) + 1;
154 * core_max = 2 ^ n (power of two)
160 core_max = 1;
163 KASSERT(lp_max >= core_max);
164 smt_bits = ilog2((lp_max / core_max) - 1) + 1
    [all...]
  /src/usr.sbin/cpuctl/arch/
i386.c 1774 u_int core_max = 1; /* core per package */ local in function:identifycpu_cpuids_intel_0x04
1787 core_max = __SHIFTOUT(descs[0], CPUID_DCP_CORE_P_PKG) + 1;
1789 assert(lp_max >= core_max);
1790 smt_max = lp_max / core_max;
1792 core_bits = ilog2(core_max - 1) + 1;
1882 u_int lp_max, core_max; local in function:identifycpu_cpuids_amd
1898 core_max = (descs[2] & 0xff) + 1;
1906 core_max = lp_max;
1908 smt_bits = ilog2((lp_max / core_max) - 1) + 1;
1910 core_bits = ilog2(core_max - 1) + 1
    [all...]

Completed in 15 milliseconds