HomeSort by relevance Sort by last modified time
    Searched refs:CPU_COUNT (Results 26 - 45 of 45) sorted by null

12

  /external/libmicrohttpd/src/testcurl/
test_post.c 46 #if defined(CPU_COUNT) && (CPU_COUNT+0) < 2
47 #undef CPU_COUNT
49 #if !defined(CPU_COUNT)
50 #define CPU_COUNT 2
283 MHD_OPTION_THREAD_POOL_SIZE, CPU_COUNT,
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
BasicBitmapDrawable.java 79 private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors();
80 private static final int CORE_POOL_SIZE = CPU_COUNT + 1;
81 private static final int MAXIMUM_POOL_SIZE = CPU_COUNT * 2 + 1;
  /packages/apps/TV/src/com/android/tv/util/images/
ImageLoader.java 56 private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors();
60 private static final int CORE_POOL_SIZE = Math.max(2, Math.min(CPU_COUNT - 1, 4));
61 private static final int MAXIMUM_POOL_SIZE = CPU_COUNT * 2 + 1;
  /external/fio/os/
os-freebsd.h 40 #define fio_cpu_count(mask) CPU_COUNT((mask))
os.h 366 #ifndef CPU_COUNT
368 static inline int CPU_COUNT(os_cpu_mask_t *mask)
os-dragonfly.h 85 /* No CPU_COUNT(), but use the default function defined in os/os.h */
86 #define fio_cpu_count(mask) CPU_COUNT((mask))
os-linux.h 73 #define fio_cpu_count(mask) CPU_COUNT((mask))
  /external/tensorflow/tensorflow/core/platform/posix/
port.cc 62 return CPU_COUNT(&cpuset);
  /system/extras/tests/icachetest/
icache_main.cpp 83 if (CPU_COUNT(&g_cpu_set)) {
  /packages/apps/Contacts/src/com/android/contacts/util/concurrent/
ContactsExecutors.java 37 private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors();
38 private static final int CORE_POOL_SIZE = CPU_COUNT + 1;
  /bionic/tests/
pty_test.cpp 111 if (CPU_COUNT(&cpus) < 2) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
sched.h 85 # define CPU_COUNT(cpusetp) __CPU_COUNT_S (sizeof (cpu_set_t), cpusetp)
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 122 private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors();
123 private static final int CORE_POOL_SIZE = CPU_COUNT + 1;
124 private static final int MAXIMUM_POOL_SIZE = CPU_COUNT * 2 + 1;
  /bionic/libc/include/
sched.h 84 #define CPU_COUNT(set) CPU_COUNT_S(sizeof(cpu_set_t), set)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationInflater.java 724 private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors();
728 private static final int CORE_POOL_SIZE = Math.max(2, Math.min(CPU_COUNT - 1, 4));
729 private static final int MAXIMUM_POOL_SIZE = CPU_COUNT * 2 + 1;
  /prebuilts/tools/common/m2/repository/com/parse/bolts/bolts-tasks/1.4.0/
bolts-tasks-1.4.0.jar 
  /bionic/tools/versioner/src/
versioner.cpp 79 return CPU_COUNT(&cpu_set);
  /external/jemalloc/src/
jemalloc.c 815 #elif defined(JEMALLOC_GLIBC_MALLOC_HOOK) && defined(CPU_COUNT)
817 * glibc >= 2.6 has the CPU_COUNT macro.
827 result = CPU_COUNT(&set);
    [all...]
  /frameworks/base/core/jni/
android_util_Process.cpp 424 int num_cpus = CPU_COUNT(&cpu_set);
    [all...]
  /external/libmicrohttpd/
configure 645 CPU_COUNT
    [all...]

Completed in 1818 milliseconds

12