HomeSort by relevance Sort by last modified time
    Searched defs:core_count (Results 1 - 5 of 5) sorted by null

  /external/libvpx/libvpx/vp8/common/generic/
systemdependent.c 38 int core_count = 16; local
42 core_count = (int)sysconf(_SC_NPROCESSORS_ONLN);
44 core_count = (int)sysconf(_SC_NPROC_ONLN);
66 core_count = (int)sysinfo.dwNumberOfProcessors;
73 core_count = 0;
77 if (status == PROC_ONLINE) core_count++;
84 return core_count > 0 ? core_count : 1;
  /external/libvpx/libvpx/vp8/decoder/
threading.c 589 int core_count = 0; local
596 core_count = (pbi->max_threads > 8) ? 8 : pbi->max_threads;
599 if (core_count > pbi->common.processor_core_count) {
600 core_count = pbi->common.processor_core_count;
603 if (core_count > 1) {
605 pbi->decoding_thread_count = core_count - 1;
  /external/syslinux/com32/gplinclude/dmi/
dmi_processor.h 100 uint16_t core_count; member in struct:__anon36979
  /external/tensorflow/tensorflow/stream_executor/
device_description.h 71 int core_count() const { return core_count_; } function in class:perftools::gputools::DeviceDescription
  /external/vixl/src/aarch32/
macro-assembler-aarch32.cc 510 int core_count = 1; local
516 PreparePrintfArgument(reg1, &core_count, &vfp_count, &printf_type);
517 PreparePrintfArgument(reg2, &core_count, &vfp_count, &printf_type);
518 PreparePrintfArgument(reg3, &core_count, &vfp_count, &printf_type);
519 PreparePrintfArgument(reg4, &core_count, &vfp_count, &printf_type);
522 if (core_count == 5) {
594 if (core_count == 5) Drop(kRegSizeInBytes);
631 int* core_count,
638 VIXL_ASSERT(*core_count <= 4);
639 if (*core_count < 4) Pop(Register(*core_count))
    [all...]

Completed in 90 milliseconds