Lines Matching refs:core_id
64 unsigned short core_id; member
76 short core_id; member
243 static int get_stored_topology_info(int cpu, int *core_id, int *pkg_id, int *die_id) in get_stored_topology_info() argument
265 *core_id = cpu_top.core_id; in get_stored_topology_info()
299 cpu_top.core_id = parse_int_file(0, in store_cpu_topology()
301 if (cpu_top.core_id < 0) in store_cpu_topology()
302 cpu_top.core_id = -1; in store_cpu_topology()
339 int core_id, pkg_id, die_id; in get_physical_package_id() local
341 ret = get_stored_topology_info(cpu, &core_id, &pkg_id, &die_id); in get_physical_package_id()
357 return cpu_map[cpu].core_id; in get_physical_core_id()
363 int core_id, pkg_id, die_id; in get_physical_core_id() local
365 ret = get_stored_topology_info(cpu, &core_id, &pkg_id, &die_id); in get_physical_core_id()
367 return core_id; in get_physical_core_id()
387 int core_id, pkg_id, die_id; in get_physical_die_id() local
389 ret = get_stored_topology_info(cpu, &core_id, &pkg_id, &die_id); in get_physical_die_id()
768 int pkg_id, die_id, core_id, punit_id; in create_cpu_map() local
782 core_id = get_physical_core_id(i); in create_cpu_map()
784 if (pkg_id < 0 || die_id < 0 || core_id < 0) in create_cpu_map()
789 cpu_map[i].core_id = core_id; in create_cpu_map()
820 i, cpu_map[i].core_id, cpu_map[i].die_id, in create_cpu_map()