OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_cpu
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/media/libcpustats/
ThreadCpuUsage.cpp
165
int ThreadCpuUsage::sScalingFds[ThreadCpuUsage::
MAX_CPU
];
182
if (sKernelMax >=
MAX_CPU
- 1) {
183
ALOGW("kernel_max %d but
MAX_CPU
%d", sKernelMax,
MAX_CPU
);
184
sKernelMax =
MAX_CPU
;
200
for (i = 0; i <
MAX_CPU
; ++i) {
207
if (cpuNum < 0 || cpuNum >=
MAX_CPU
) {
221
COMPILE_TIME_ASSERT_FUNCTION_SCOPE(
MAX_CPU
<= 10);
/frameworks/av/include/cpustats/
ThreadCpuUsage.h
129
static const int
MAX_CPU
= 8;
130
static int sScalingFds[
MAX_CPU
];// file descriptor per CPU for reading scaling_cur_freq
131
uint32_t mCurrentkHz[
MAX_CPU
]; // current CPU frequency in kHz, not static to avoid a race
133
static int sKernelMax; // like
MAX_CPU
, but determined at runtime == cpu/kernel_max + 1
/system/extras/sane_schedstat/
sane_schedstat.c
31
#define
MAX_CPU
2
54
struct cpu_stat cpu_prev[
MAX_CPU
];
55
struct cpu_stat cpu_delta[
MAX_CPU
];
73
for (i=0; i<
MAX_CPU
; i++) {
/external/linux-tools-perf/scripts/python/
sched-migration.py
319
max_cpu
= 0
321
if cpu >
max_cpu
:
322
max_cpu
= cpu
323
return
max_cpu
/external/linux-tools-perf/
builtin-sched.c
1424
static int
max_cpu
;
variable
1449
if (this_cpu >
max_cpu
)
1450
max_cpu
= this_cpu;
1488
for (cpu = 0; cpu <=
max_cpu
; cpu++) {
[
all
...]
Completed in 138 milliseconds