Home
last modified time | relevance | path

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

/xnu-8019.80.24/osfmk/i386/
H A Dcpu_threads.c193 topoParms.nLThreadsPerCore = cpuinfo->thread_count / cpuinfo->core_count; in initTopoParms()
216 topoParms.nLThreadsPerDie = topoParms.nLThreadsPerCore * topoParms.nLCoresPerDie; in initTopoParms()
228 topoParms.nLThreadsPerPackage = topoParms.nLThreadsPerCore * topoParms.nLCoresPerPackage; in initTopoParms()
238 TOPO_DBG("\tThreads per Core: %d\n", topoParms.nLThreadsPerCore); in initTopoParms()
499 lcpu->lnum = lnum % topoParms.nLThreadsPerCore; in x86_set_logical_topology()
501 core->pcore_num = lnum / topoParms.nLThreadsPerCore; in x86_set_logical_topology()
504 die->pdie_num = lnum / (topoParms.nLThreadsPerCore * topoParms.nLCoresPerDie); in x86_set_logical_topology()
1165 if (nCPUs != topoParms.nLThreadsPerCore) { in x86_validate_topology()
1167 topoParms.nLThreadsPerCore, nCPUs, core->pcore_num); in x86_validate_topology()
H A Dcpu_topology.h215 uint32_t nLThreadsPerCore; member