OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cpu_string
(Results
1 - 6
of
6
) sorted by null
/external/chromium/base/
cpu.cc
85
char
cpu_string
[0x20];
local
97
memset(
cpu_string
, 0, sizeof(
cpu_string
));
98
*(reinterpret_cast<int*>(
cpu_string
)) = cpu_info[1];
99
*(reinterpret_cast<int*>(
cpu_string
+4)) = cpu_info[3];
100
*(reinterpret_cast<int*>(
cpu_string
+8)) = cpu_info[2];
111
cpu_vendor_ =
cpu_string
;
/external/chromium_org/base/
cpu.cc
92
char
cpu_string
[48];
local
100
// before using memcpy to copy these three array elements to
cpu_string
.
104
memcpy(
cpu_string
, &cpu_info[1], 3 * sizeof(cpu_info[1]));
105
cpu_vendor_.assign(
cpu_string
, 3 * sizeof(cpu_info[1]));
144
char* cpu_string_ptr =
cpu_string
;
147
cpu_string_ptr < &
cpu_string
[sizeof(
cpu_string
)]; parameter++) {
152
cpu_brand_.assign(
cpu_string
, cpu_string_ptr -
cpu_string
);
/external/oprofile/libop/
op_cpu_type.c
158
op_cpu op_get_cpu_number(char const *
cpu_string
)
164
if (!strcmp(cpu_descrs[i].name,
cpu_string
)) {
172
sscanf(
cpu_string
, "%d\n", &cpu_type);
op_cpu_type.h
118
* @param
cpu_string
with either the cpu type identifier or cpu type number
122
op_cpu op_get_cpu_number(char const *
cpu_string
);
/external/oprofile/utils/
ophelp.c
33
static char *
cpu_string
;
variable
298
{ "cpu-type", 'c', POPT_ARG_STRING, &
cpu_string
, 0,
378
if (
cpu_string
) {
379
cpu_type = op_get_cpu_number(
cpu_string
);
386
cpu_string
?
cpu_string
: "unset");
/external/linux-tools-perf/util/
svghelper.c
238
char
cpu_string
[80];
local
250
sprintf(
cpu_string
, "CPU %i", (int)cpu+1);
252
10+time2pixels(first_time), cpu2y(cpu) + SLOT_HEIGHT/2,
cpu_string
);
Completed in 77 milliseconds