Home
last modified time | relevance | path

Searched refs:num_cores (Results 1 – 9 of 9) sorted by relevance

/external/libavc/encoder/
Dih264e_debug.h43 #define DEBUG_DUMP_QP(pic_cnt, qp, num_cores) \ argument
44 ih264e_debug_dump_qp(pic_cnt, qp, num_cores);
50 #define DEBUG_DUMP_INP_TO_RC_POST_ENC(ps_frame_info, pic_cnt, num_cores) \ argument
51 ih264e_debug_dump_inp_to_post_enc(ps_frame_info, pic_cnt, num_cores);
55 #define DEBUG_DUMP_QP(pic_cnt, qp, num_cores) (void); argument
61 #define DEBUG_DUMP_INP_TO_RC_POST_ENC(ps_frame_info, pic_cnt, num_cores) (void); argument
/external/skia/src/core/
DSkTaskGroup.cpp17 static void query_num_cores(int* num_cores) { in query_num_cores() argument
20 *num_cores = sysinfo.dwNumberOfProcessors; in query_num_cores()
24 static void query_num_cores(int* num_cores) { in query_num_cores() argument
25 *num_cores = (int)sysconf(_SC_NPROCESSORS_ONLN); in query_num_cores()
32 static int num_cores = 0; in sk_num_cores() local
33 SkOnce(&g_query_num_cores_once, query_num_cores, &num_cores); in sk_num_cores()
34 SkASSERT(num_cores > 0); in sk_num_cores()
35 return num_cores; in sk_num_cores()
/external/autotest/client/site_tests/power_Thermal/
Dpower_Thermal.py18 def __init__(self, num_cores, max_cpu_freq, min_cpu_freq): argument
19 self.num_cores = num_cores
122 for cpu in range(self.pl_desc.num_cores):
173 for cpu in range(self.pl_desc.num_cores):
201 for cpu in range(self.pl_desc.num_cores):
218 for cpu in range(self.pl_desc.num_cores):
225 for cpu in range(self.pl_desc.num_cores):
264 if self._throttle_count() == self.pl_desc.num_cores:
/external/libhevc/common/
Dithread.c154 int num_cores = sysconf(_SC_NPROCESSORS_ONLN); in ithread_set_affinity() local
157 if(core_id >= num_cores) in ithread_set_affinity()
/external/libmpeg2/common/
Dithread.c161 int num_cores = sysconf(_SC_NPROCESSORS_ONLN); in ithread_set_affinity() local
164 if (core_id >= num_cores) in ithread_set_affinity()
/external/libavc/common/
Dithread.c179 int num_cores = sysconf(_SC_NPROCESSORS_ONLN); in ithread_set_affinity() local
182 if (core_id >= num_cores) in ithread_set_affinity()
/external/libhevc/test/decoder/
Dtest.cfg10 --num_cores 2
/external/webrtc/webrtc/video/
Dvideo_quality_test.cc84 uint32_t num_cores = CpuInfo::DetectNumberOfCores(); in VideoAnalyzer() local
85 RTC_DCHECK_GE(num_cores, 1u); in VideoAnalyzer()
89 if (num_cores <= kMinCoresLeft) { in VideoAnalyzer()
90 num_cores = 1; in VideoAnalyzer()
92 num_cores -= kMinCoresLeft; in VideoAnalyzer()
93 num_cores = std::min(num_cores, kMaxComparisonThreads); in VideoAnalyzer()
96 for (uint32_t i = 0; i < num_cores; ++i) { in VideoAnalyzer()
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/
Dpowermetrics_power_monitor.py162 num_cores = len(core_dict)
164 for core_idx in xrange(num_cores):