Home
last modified time | relevance | path

Searched refs:CPU_SETSIZE (Results 1 – 7 of 7) sorted by relevance

/aosp12/bionic/tests/
H A Dsched_test.cpp76 for (int i = 0; i < CPU_SETSIZE; i++) { in TEST()
81 CPU_SET(CPU_SETSIZE, &set); in TEST()
82 ASSERT_FALSE(CPU_ISSET(CPU_SETSIZE, &set)); in TEST()
102 for (int i = 0; i < CPU_SETSIZE; i++) { in TEST()
113 for (int i = 0; i < CPU_SETSIZE; i++) { in TEST()
117 for (int i = 0; i < CPU_SETSIZE; i++) { in TEST()
122 CPU_CLR(CPU_SETSIZE, &set); in TEST()
151 for (int i = 0; i < CPU_SETSIZE; i++) { in TEST()
156 for (int i = 0; i < CPU_SETSIZE; i++) { in TEST()
161 for (int i = 0; i < CPU_SETSIZE; i++) { in TEST()
[all …]
H A Dpty_test.cpp129 for (int i = 0; i < CPU_SETSIZE; i++) { in TEST()
H A Dsys_ptrace_test.cpp232 for (size_t cpu = 0; cpu < CPU_SETSIZE; ++cpu) { in TEST()
/aosp12/bionic/libc/include/
H A Dsched.h62 #define CPU_SETSIZE 1024 macro
64 #define CPU_SETSIZE 32 macro
73 __CPU_BITTYPE __bits[ CPU_SETSIZE / __CPU_BITS ];
/aosp12/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp395 if (start >= CPU_SETSIZE) { in parse_cpuset_cpus()
396 ALOGE("parse_cpuset_cpus: ignoring CPU number larger than %d.", CPU_SETSIZE); in parse_cpuset_cpus()
398 } else if (end >= CPU_SETSIZE) { in parse_cpuset_cpus()
399 ALOGE("parse_cpuset_cpus: ignoring CPU numbers larger than %d.", CPU_SETSIZE); in parse_cpuset_cpus()
400 end = CPU_SETSIZE - 1; in parse_cpuset_cpus()
510 for (int i = 0; i < CPU_SETSIZE && count < num_cpus; i++) { in android_os_Process_getExclusiveCores()
/aosp12/system/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp222 for (unsigned int n1 = 0; n1 < CPU_SETSIZE; n1++) { in operator <<()
/aosp12/system/core/libutils/
H A DRefBase_test.cpp313 for (unsigned i = 0; i < CPU_SETSIZE; ++i) { in setExclusiveCpus()