Home
last modified time | relevance | path

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

/xnu-11215.61.5/osfmk/i386/
H A Dcpu_threads.c191 topoParms.nLThreadsPerCore = cpuinfo->thread_count / cpuinfo->core_count; in initTopoParms()
214 topoParms.nLThreadsPerDie = topoParms.nLThreadsPerCore * topoParms.nLCoresPerDie; in initTopoParms()
226 topoParms.nLThreadsPerPackage = topoParms.nLThreadsPerCore * topoParms.nLCoresPerPackage; in initTopoParms()
236 TOPO_DBG("\tThreads per Core: %d\n", topoParms.nLThreadsPerCore); in initTopoParms()
497 lcpu->lnum = lnum % topoParms.nLThreadsPerCore; in x86_set_logical_topology()
499 core->pcore_num = lnum / topoParms.nLThreadsPerCore; in x86_set_logical_topology()
502 die->pdie_num = lnum / (topoParms.nLThreadsPerCore * topoParms.nLCoresPerDie); in x86_set_logical_topology()
1163 if (nCPUs != topoParms.nLThreadsPerCore) { in x86_validate_topology()
1165 topoParms.nLThreadsPerCore, nCPUs, core->pcore_num); in x86_validate_topology()
H A Dcpu_topology.h215 uint32_t nLThreadsPerCore; member