Home
last modified time | relevance | path

Searched refs:cpuModel (Results 1 – 4 of 4) sorted by relevance

/haiku/headers/private/shared/
H A Dcpu_type.h24 enum cpu_vendor cpuVendor, uint32 cpuModel);
247 uint32 cpuModel) in get_cpu_model_string() argument
254 (void)cpuModel; in get_cpu_model_string()
269 uint16 family = ((cpuModel >> 8) & 0xf) | ((cpuModel >> 16) & 0xff0); in get_cpu_model_string()
270 uint16 model = ((cpuModel >> 4) & 0xf) | ((cpuModel >> 12) & 0xf0); in get_cpu_model_string()
271 uint8 stepping = cpuModel & 0xf; in get_cpu_model_string()
492 uint32 cpuModel = 0; in get_cpu_type() local
504 cpuModel = topology[i].data.core.model; in get_cpu_type()
517 model = get_cpu_model_string(platform, cpuVendor, cpuModel); in get_cpu_type()
/haiku/src/bin/
H A Dsysinfo.cpp688 uint32 cpuModel = 0; in dump_cpus() local
701 cpuModel = topology[i].data.core.model; in dump_cpus()
712 const char *model = get_cpu_model_string(platform, cpuVendor, cpuModel); in dump_cpus()
719 snprintf(modelString, 32, "(Unknown %" B_PRIx32 ")", cpuModel); in dump_cpus()
726 cpuModel, in dump_cpus()
731 dump_cpu(cpuVendor, cpuModel, cpu); in dump_cpus()
/haiku/src/kits/debugger/controllers/
H A DDebugReportGenerator.cpp257 uint32 cpuModel = 0; in _GenerateReportHeader() local
280 cpuModel = topology[i].data.core.model; in _GenerateReportHeader()
293 const char* model = get_cpu_model_string(platform, cpuVendor, cpuModel); in _GenerateReportHeader()
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp1124 uint32 cpuModel = 0; in _GetCPUInfo() local
1137 cpuModel = topology[i].data.core.model; in _GetCPUInfo()
1149 << get_cpu_model_string(platform, cpuVendor, cpuModel) in _GetCPUInfo()