HomeSort by relevance Sort by last modified time
    Searched refs:CPUInfo (Results 1 - 19 of 19) sorted by null

  /external/libopus/celt/x86/
x86cpu.c 47 static _inline void cpuid(unsigned int CPUInfo[4], unsigned int InfoType)
49 __cpuid((int*)CPUInfo, InfoType);
58 static void cpuid(unsigned int CPUInfo[4], unsigned int InfoType)
67 "=a" (CPUInfo[0]),
68 "=r" (CPUInfo[1]),
69 "=c" (CPUInfo[2]),
70 "=d" (CPUInfo[3]) :
76 "=a" (CPUInfo[0]),
77 "=b" (CPUInfo[1]),
78 "=c" (CPUInfo[2])
    [all...]
  /external/lzma/C/
CpuArch.c 108 int CPUInfo[4];
109 __cpuid(CPUInfo, function);
110 *a = CPUInfo[0];
111 *b = CPUInfo[1];
112 *c = CPUInfo[2];
113 *d = CPUInfo[3];
  /external/compiler-rt/lib/scudo/
scudo_utils.cpp 84 static CPUIDInfo CPUInfo = {};
88 getCPUID(&CPUInfo, 1, 0);
95 return ((CPUInfo.Ecx >> 20) & 0x1) != 0;
  /external/google-benchmark/src/
sysinfo.cc 217 std::vector<CPUInfo::CacheInfo> GetCacheSizesFromKVFS() {
218 std::vector<CPUInfo::CacheInfo> res;
222 CPUInfo::CacheInfo info;
255 std::vector<CPUInfo::CacheInfo> GetCacheSizesMacOSX() {
256 std::vector<CPUInfo::CacheInfo> res;
272 CPUInfo::CacheInfo info;
282 std::vector<CPUInfo::CacheInfo> GetCacheSizesWindows() {
283 std::vector<CPUInfo::CacheInfo> res;
305 CPUInfo::CacheInfo C;
332 std::vector<CPUInfo::CacheInfo> GetCacheSizes()
    [all...]
reporter.cc 40 const CPUInfo &info = context.cpu_info;
67 BenchmarkReporter::Context::Context() : cpu_info(CPUInfo::Get()) {}
json_reporter.cc 80 CPUInfo const& info = context.cpu_info;
benchmark_register.cc 450 thread_counts_.push_back(CPUInfo::Get().num_cpus);
  /external/libcxx/utils/google-benchmark/src/
sysinfo.cc 217 std::vector<CPUInfo::CacheInfo> GetCacheSizesFromKVFS() {
218 std::vector<CPUInfo::CacheInfo> res;
222 CPUInfo::CacheInfo info;
255 std::vector<CPUInfo::CacheInfo> GetCacheSizesMacOSX() {
256 std::vector<CPUInfo::CacheInfo> res;
272 CPUInfo::CacheInfo info;
282 std::vector<CPUInfo::CacheInfo> GetCacheSizesWindows() {
283 std::vector<CPUInfo::CacheInfo> res;
305 CPUInfo::CacheInfo C;
332 std::vector<CPUInfo::CacheInfo> GetCacheSizes()
    [all...]
reporter.cc 40 const CPUInfo &info = context.cpu_info;
67 BenchmarkReporter::Context::Context() : cpu_info(CPUInfo::Get()) {}
json_reporter.cc 80 CPUInfo const& info = context.cpu_info;
benchmark_register.cc 450 thread_counts_.push_back(CPUInfo::Get().num_cpus);
  /external/v8/src/base/
cpu.cc 17 #include <sys/syspage.h> // cpuinfo
181 // Extract the information exposed by the kernel via /proc/cpuinfo.
182 class CPUInfo final {
184 CPUInfo() : datalen_(0) {
185 // Get the size of the cpuinfo file by reading it until the end. This is
188 static const char PATHNAME[] = "/proc/cpuinfo";
202 // Read the contents of the cpuinfo file.
220 ~CPUInfo() {
225 // the content of the cpuinfo file and return it as a heap-allocated
349 // valid Ids in CPUInfo[0] and the CPU identification string i
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
intrin-impl.h     [all...]
  /external/tensorflow/tensorflow/tools/test/
system_info_lib.py 28 # Note: cpuinfo and psutil are not installed for you in the TensorFlow
30 import cpuinfo
78 cpu_info = test_log_pb2.CPUInfo()
95 info = cpuinfo.get_cpu_info()
  /external/google-benchmark/include/benchmark/
benchmark.h     [all...]
  /external/libcxx/utils/google-benchmark/include/benchmark/
benchmark.h     [all...]
  /external/google-benchmark/test/
reporter_output_test.cc 29 auto const& Caches = benchmark::CPUInfo::Get().caches;
  /external/libcxx/utils/google-benchmark/test/
reporter_output_test.cc 29 auto const& Caches = benchmark::CPUInfo::Get().caches;
  /external/pcre/dist2/src/sljit/
sljitNativeX86_common.c 311 int CPUInfo[4];
312 __cpuid(CPUInfo, 1);
313 features = (sljit_u32)CPUInfo[3];
    [all...]

Completed in 433 milliseconds