Home
last modified time | relevance | path

Searched refs:core_count (Results 1 – 15 of 15) 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.c589 int core_count = 0; in vp8_decoder_create_threads() local
596 core_count = (pbi->max_threads > 8) ? 8 : pbi->max_threads; in vp8_decoder_create_threads()
599 if (core_count > pbi->common.processor_core_count) { in vp8_decoder_create_threads()
600 core_count = pbi->common.processor_core_count; in vp8_decoder_create_threads()
603 if (core_count > 1) { in vp8_decoder_create_threads()
605 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/syslinux/com32/modules/
Ddmitest.c168 if (dmi->processor.core_count != 0) in display_cpu()
169 moreprintf("\tCores Count %d\n", dmi->processor.core_count); in display_cpu()
/external/syslinux/com32/gplinclude/dmi/
Ddmi_processor.h100 uint16_t core_count; member
/external/tensorflow/tensorflow/stream_executor/
Ddevice_description.h71 int core_count() const { return core_count_; } in core_count() function
Ddevice_description.cc100 result["Core Count"] = port::StrCat(core_count()); in ToMap()
/external/syslinux/com32/hdt/
Dhdt-cli-dmi.c353 if (hardware->dmi.processor.core_count != 0) in show_dmi_cpu()
354 more_printf(" Cores Count : %d\n", hardware->dmi.processor.core_count); in show_dmi_cpu()
Dhdt-dump-dmi.c208 add_hi(dmi.processor.core_count); in dump_processor()
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_device.cc1163 max_count = std::max(max_count, desc.core_count()); in GetDefaultMinGPUMultiprocessorCount()
1394 if (desc.core_count() < min_gpu_core_count) { in GetValidDeviceIds()
1398 << "with Cuda multiprocessor count: " << desc.core_count() in GetValidDeviceIds()
/external/syslinux/com32/gpllib/dmi/
Ddmi.c774 dmi->processor.core_count = 0; in dmi_decode()
779 dmi->processor.core_count = data[0x23]; in dmi_decode()
/external/syslinux/com32/lua/src/
Ddmi.c266 LUA_ADD_NUM_P(L, processor, core_count) in get_processor_table()
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcuda_gpu_executor.cc423 int multiprocessor_count = device_description.core_count(); in VlogOccupancyInfo()