Searched defs:cpu_count (Results 1 - 9 of 9) sorted by relevance

/external/google-breakpad/src/google_breakpad/processor/
H A Dsystem_info.h47 cpu_count(0) {}
56 cpu_count = 0;
93 int cpu_count; member in struct:google_breakpad::SystemInfo
/external/v8/tools/sanitizers/
H A Dsancov_merger.py32 from multiprocessing import Pool, cpu_count namespace
47 CPUS = cpu_count()
H A Dsancov_formatter.py50 from multiprocessing import Pool, cpu_count namespace
101 CPUS = cpu_count()
/external/chromium-trace/catapult/third_party/typ/typ/fakes/
H A Dhost_fake.py102 def cpu_count(self): member in class:FakeHost
/external/chromium-trace/catapult/third_party/typ/typ/
H A Dhost.py92 def cpu_count(self): member in class:Host
93 return multiprocessing.cpu_count()
/external/kernel-headers/original/uapi/linux/
H A Dtaskstats.h71 __u64 cpu_count __attribute__((aligned(8))); member in struct:taskstats
/external/autotest/client/bin/
H A Djob.py721 def cpu_count(self): member in class:base_client_job
767 cpu_count = utils.count_cpus()
768 old_count = self._state.get('client', 'cpu_count')
769 if cpu_count != old_count:
772 (old_count, cpu_count))
875 self._state.set('client', 'cpu_count', utils.count_cpus())
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dminidump_writer.cc993 int cpu_count = cpus_present.GetCount(); local
994 if (cpu_count > 255)
995 cpu_count = 255;
996 sys_info->number_of_processors = static_cast<uint8_t>(cpu_count);
/external/skia/platform_tools/android/third_party/cpufeatures/
H A Dcpu-features.c1052 android_setCpu(int cpu_count, uint64_t cpu_features) argument
1059 g_cpuCount = (cpu_count <= 0 ? 1 : cpu_count);
1075 android_setCpuArm(int cpu_count, uint64_t cpu_features, uint32_t cpu_id) argument
1077 if (!android_setCpu(cpu_count, cpu_features))

Completed in 346 milliseconds