Searched defs:core_count (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp8/common/generic/
H A Dsystemdependent.c38 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/
H A Dthreading.c590 int core_count = 0; local
598 core_count = (pbi->max_threads > 8) ? 8 : pbi->max_threads;
601 if (core_count > pbi->common.processor_core_count) {
602 core_count = pbi->common.processor_core_count;
605 if (core_count > 1) {
607 pbi->decoding_thread_count = core_count - 1;
/external/syslinux/com32/gplinclude/dmi/
H A Ddmi_processor.h100 uint16_t core_count; member in struct:__anon19279
/external/vixl/src/aarch32/
H A Dmacro-assembler-aarch32.cc806 int core_count = 1; local
812 PreparePrintfArgument(reg1, &core_count, &vfp_count, &printf_type);
813 PreparePrintfArgument(reg2, &core_count, &vfp_count, &printf_type);
814 PreparePrintfArgument(reg3, &core_count, &vfp_count, &printf_type);
815 PreparePrintfArgument(reg4, &core_count, &vfp_count, &printf_type);
818 if (core_count == 5) {
890 if (core_count == 5) Drop(kRegSizeInBytes);
927 int* core_count,
934 VIXL_ASSERT(*core_count <= 4);
935 if (*core_count <
926 PreparePrintfArgument(CPURegister reg, int* core_count, int* vfp_count, uint32_t* printf_type) argument
[all...]

Completed in 130 milliseconds