Home
last modified time | relevance | path

Searched refs:cpu_name (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/mesa/x86/
Dcommon_x86.c284 char cpu_name[49]; in _mesa_get_x86_features() local
286 …002+ofs, (GLuint *)(cpu_name + (16*ofs)+0), (GLuint *)(cpu_name + (16*ofs)+4), (GLuint *)(cpu_name in _mesa_get_x86_features()
287 cpu_name[48] = '\0'; /* the name should be NULL terminated, but just to be sure */ in _mesa_get_x86_features()
290 _mesa_debug(NULL, "CPU name: %s\n", cpu_name); in _mesa_get_x86_features()
/external/chromium_org/third_party/mesa/src/src/mesa/x86/
Dcommon_x86.c284 char cpu_name[49]; in _mesa_get_x86_features() local
286 …002+ofs, (GLuint *)(cpu_name + (16*ofs)+0), (GLuint *)(cpu_name + (16*ofs)+4), (GLuint *)(cpu_name in _mesa_get_x86_features()
287 cpu_name[48] = '\0'; /* the name should be NULL terminated, but just to be sure */ in _mesa_get_x86_features()
290 _mesa_debug(NULL, "CPU name: %s\n", cpu_name); in _mesa_get_x86_features()
/external/oprofile/libop/
Dop_events.c36 static char *build_fn(const char *cpu_name, const char *fn) in build_fn() argument
44 s = xmalloc(strlen(dir) + strlen(cpu_name) + strlen(fn) + 5); in build_fn()
45 sprintf(s, "%s/%s/%s", dir, cpu_name, fn); in build_fn()
538 char const * cpu_name) in check_unit_mask() argument
550 "entry (%s)\n", um->name, cpu_name); in check_unit_mask()
559 "(%s)\n", um->name, cpu_name); in check_unit_mask()
570 "valid (%s)\n", um->name, cpu_name); in check_unit_mask()
590 static void load_events_name(const char *cpu_name) in load_events_name() argument
595 event_file = build_fn(cpu_name, "events"); in load_events_name()
596 um_file = build_fn(cpu_name, "unit_masks"); in load_events_name()
[all …]
/external/oprofile/libpp/
Dop_header.cpp262 string cpu_name = op_get_cpu_name(cpu); in describe_cpu() local
264 str = xml_utils::get_profile_header(cpu_name, header.cpu_speed); in describe_cpu()
Dxml_utils.h34 static std::string get_profile_header(std::string cpu_name,
Dxml_utils.cpp160 string xml_utils::get_profile_header(string cpu_name, double const speed) in get_profile_header() argument
165 string::size_type slash_pos = cpu_name.find("/"); in get_profile_header()
168 cpu_type = cpu_name; in get_profile_header()
171 cpu_type = cpu_name.substr(0, slash_pos); in get_profile_header()
172 processor = cpu_name.substr(slash_pos+1); in get_profile_header()