Home
last modified time | relevance | path

Searched refs:nLThreadsPerCore (Results 1 – 2 of 2) sorted by relevance

/xnu-8796.141.3/osfmk/i386/
H A Dcpu_threads.c194 topoParms.nLThreadsPerCore = cpuinfo->thread_count / cpuinfo->core_count; in initTopoParms()
217 topoParms.nLThreadsPerDie = topoParms.nLThreadsPerCore * topoParms.nLCoresPerDie; in initTopoParms()
229 topoParms.nLThreadsPerPackage = topoParms.nLThreadsPerCore * topoParms.nLCoresPerPackage; in initTopoParms()
239 TOPO_DBG("\tThreads per Core: %d\n", topoParms.nLThreadsPerCore); in initTopoParms()
500 lcpu->lnum = lnum % topoParms.nLThreadsPerCore; in x86_set_logical_topology()
502 core->pcore_num = lnum / topoParms.nLThreadsPerCore; in x86_set_logical_topology()
505 die->pdie_num = lnum / (topoParms.nLThreadsPerCore * topoParms.nLCoresPerDie); in x86_set_logical_topology()
1166 if (nCPUs != topoParms.nLThreadsPerCore) { in x86_validate_topology()
1168 topoParms.nLThreadsPerCore, nCPUs, core->pcore_num); in x86_validate_topology()
H A Dcpu_topology.h215 uint32_t nLThreadsPerCore; member