Home
last modified time | relevance | path

Searched refs:core_count (Results 1 – 11 of 11) sorted by relevance

/external/libvpx/libvpx/vp8/common/generic/
Dsystemdependent.c38 int core_count = 16; in get_cpu_count() local
42 core_count = (int)sysconf(_SC_NPROCESSORS_ONLN); in get_cpu_count()
44 core_count = (int)sysconf(_SC_NPROC_ONLN); in get_cpu_count()
66 core_count = (int)sysinfo.dwNumberOfProcessors; in get_cpu_count()
73 core_count = 0; in get_cpu_count()
77 if (status == PROC_ONLINE) core_count++; in get_cpu_count()
84 return core_count > 0 ? core_count : 1; in get_cpu_count()
/external/vixl/src/aarch32/
Dmacro-assembler-aarch32.cc510 int core_count = 1; in Printf() local
516 PreparePrintfArgument(reg1, &core_count, &vfp_count, &printf_type); in Printf()
517 PreparePrintfArgument(reg2, &core_count, &vfp_count, &printf_type); in Printf()
518 PreparePrintfArgument(reg3, &core_count, &vfp_count, &printf_type); in Printf()
519 PreparePrintfArgument(reg4, &core_count, &vfp_count, &printf_type); in Printf()
522 if (core_count == 5) { in Printf()
594 if (core_count == 5) Drop(kRegSizeInBytes); in Printf()
631 int* core_count, in PreparePrintfArgument() argument
638 VIXL_ASSERT(*core_count <= 4); in PreparePrintfArgument()
639 if (*core_count < 4) Pop(Register(*core_count)); in PreparePrintfArgument()
[all …]
Dmacro-assembler-aarch32.h857 int* core_count,
/external/libvpx/libvpx/vp8/decoder/
Dthreading.c612 int core_count = 0; in vp8_decoder_create_threads() local
619 core_count = (pbi->max_threads > 8) ? 8 : pbi->max_threads; in vp8_decoder_create_threads()
622 if (core_count > pbi->common.processor_core_count) { in vp8_decoder_create_threads()
623 core_count = pbi->common.processor_core_count; in vp8_decoder_create_threads()
626 if (core_count > 1) { in vp8_decoder_create_threads()
628 pbi->decoding_thread_count = core_count - 1; in vp8_decoder_create_threads()
/external/tensorflow/tensorflow/core/grappler/
Ddevices.cc43 if (desc.core_count() >= min_gpu_core_count) { in GetNumAvailableGPUs()
/external/grpc-grpc/src/ruby/qps/
Dworker.rb76 def core_count(_args, _call) method in WorkerServiceImpl
Dproxy-worker.rb131 def core_count(_args, _call) method in ProxyWorkerServiceImpl
/external/tensorflow/tensorflow/stream_executor/
Ddevice_description.cc99 result["Core Count"] = absl::StrCat(core_count()); in ToMap()
Ddevice_description.h69 int core_count() const { return core_count_; } in core_count() function
/external/u-boot/include/
Dsmbios.h167 u8 core_count; member
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_device.cc1368 max_count = std::max(max_count, desc.core_count()); in GetDefaultMinGPUMultiprocessorCount()
1658 if (desc.core_count() < min_gpu_core_count) { in GetValidDeviceIds()
1662 << "with core count: " << desc.core_count() in GetValidDeviceIds()