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

  /src/sys/sys/
lwpctl.h 79 vaddr_t lp_max; member in struct:lcproc
  /src/sys/arch/x86/x86/
cpu_topology.c 79 u_int lp_max; /* Logical processors per package (node) */ local in function:x86_cpu_topology
117 lp_max = __SHIFTOUT(descs[1], CPUID_HTT_CORES);
119 lp_max = 1;
142 core_max = lp_max;
163 KASSERT(lp_max >= core_max);
164 smt_bits = ilog2((lp_max / core_max) - 1) + 1;
  /src/usr.sbin/cpuctl/arch/
i386.c 1772 u_int lp_max = 1; /* logical processors per package */ local in function:identifycpu_cpuids_intel_0x04
1784 lp_max = __SHIFTOUT(descs[1], CPUID_HTT_CORES);
1789 assert(lp_max >= core_max);
1790 smt_max = lp_max / core_max;
1882 u_int lp_max, core_max; local in function:identifycpu_cpuids_amd
1894 lp_max = __SHIFTOUT(descs[1], CPUID_HTT_CORES);
1904 lp_max = 1;
1906 core_max = lp_max;
1908 smt_bits = ilog2((lp_max / core_max) - 1) + 1;

Completed in 62 milliseconds