Searched refs:metric (Results 1 - 25 of 98) sorted by relevance

1234

/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Dvoip_metric_unittest.cc32 RTCPVoIPMetric metric; local
33 metric.lossRate = 1;
34 metric.discardRate = 2;
35 metric.burstDensity = 3;
36 metric.gapDensity = 4;
37 metric.burstDuration = 0x1112;
38 metric.gapDuration = 0x2223;
39 metric.roundTripDelay = 0x3334;
40 metric.endSystemDelay = 0x4445;
41 metric
[all...]
/external/autotest/client/site_tests/firmware_TouchMTB/tools/
H A Dprint_log.py40 for metric in vlog.metrics:
41 print (prefix_spaces * 5 + 'metric %s: %s' %
42 (metric.name, metric.value))
/external/lisa/libs/utils/analysis/
H A Dfunctions_analysis.py40 For each speficied metric a barplot is generated which report the value
41 of the metric when the kernel function has been executed on each CPU.
67 for metric in metrics:
68 if metric.upper() == 'AVG':
71 if metric.upper() == 'TIME':
74 data = df[metric.lower()].unstack()
/external/fec/
H A Dviterbi27_av.c19 metric_t metrics1; /* path metric buffer 1 */
20 metric_t metrics2; /* path metric buffer 2 */
123 vector unsigned char metric,m_metric,m0,m1,m2,m3; local
136 metric = vec_avg(vec_xor(Branchtab27[0].v[0],sym0v),vec_xor(Branchtab27[1].v[0],sym1v));
137 metric = vec_sr(metric,(vector unsigned char)(3));
138 m_metric = vec_sub((vector unsigned char)(31),metric);
141 m0 = vec_adds(vp->old_metrics->v[0],metric);
142 m3 = vec_adds(vp->old_metrics->v[2],metric);
147 metric
[all...]
H A Dviterbi27_port.c21 metric_t metrics1; /* path metric buffer 1 */
22 metric_t metrics2; /* path metric buffer 2 */
118 unsigned int metric,m0,m1,decision;\
119 metric = (Branchtab27[0].c[i] ^ sym0) + (Branchtab27[1].c[i] ^ sym1);\
120 m0 = vp->old_metrics->w[i] + metric;\
121 m1 = vp->old_metrics->w[i+32] + (510 - metric);\
125 m0 -= (metric+metric-510);\
126 m1 += (metric+metric
[all...]
H A Dviterbi29_port.c18 metric_t metrics1; /* path metric buffer 1 */
19 metric_t metrics2; /* path metric buffer 2 */
119 unsigned int metric,m0,m1,decision;\
120 metric = (Branchtab29[0].c[i] ^ sym0) + (Branchtab29[1].c[i] ^ sym1);\
121 m0 = vp->old_metrics->w[i] + metric;\
122 m1 = vp->old_metrics->w[i+128] + (510 - metric);\
126 m0 -= (metric+metric-510);\
127 m1 += (metric+metric
[all...]
H A Dviterbi39_port.c18 metric_t metrics1; /* path metric buffer 1 */
19 metric_t metrics2; /* path metric buffer 2 */
119 unsigned int metric,m0,m1,decision;\
120 metric = (Branchtab39[0].c[i] ^ sym0) + (Branchtab39[1].c[i] ^ sym1) + \
122 m0 = vp->old_metrics->w[i] + metric;\
123 m1 = vp->old_metrics->w[i+128] + (765 - metric);\
127 m0 -= (metric+metric-765);\
128 m1 += (metric+metric
[all...]
H A Dviterbi615_port.c19 metric_t metrics1; /* path metric buffer 1 */
20 metric_t metrics2; /* path metric buffer 2 */
113 unsigned long metric,m0,m1,m2,m3,decision0,decision1;\
114 metric = ((Branchtab615[0].w[i] ^ syms[0]) + (Branchtab615[1].w[i] ^ syms[1])\
117 m0 = vp->old_metrics->w[i] + metric;\
118 m1 = vp->old_metrics->w[i+8192] + (1530 - metric);\
119 m2 = vp->old_metrics->w[i] + (1530-metric);\
120 m3 = vp->old_metrics->w[i+8192] + metric;\
H A Dviterbi27_sse2.c19 metric_t metrics1; /* path metric buffer 1 */
20 metric_t metrics2; /* path metric buffer 2 */
141 __m128i decision0,decision1,metric,m_metric,m0,m1,m2,m3,survivor0,survivor1;
144 metric = _mm_avg_epu8(_mm_xor_si128(Branchtab27_sse2[0].v[i],sym0v),_mm_xor_si128(Branchtab27_sse2[1].v[i],sym1v));
148 metric = _mm_srli_epi16(metric,3);
149 metric = _mm_and_si128(metric,_mm_set1_epi8(31));
150 m_metric = _mm_sub_epi8(_mm_set1_epi8(31),metric);
153 m0 = _mm_add_epi8(vp->old_metrics->v[i],metric);
[all...]
H A Dviterbi29_av.c19 metric_t metrics1; /* path metric buffer 1 */
20 metric_t metrics2; /* path metric buffer 2 */
135 vector unsigned char metric,m_metric,m0,m1,m2,m3,survivor0,survivor1; local
138 metric = vec_avg(vec_xor(Branchtab29[0].v[i],sym1v),vec_xor(Branchtab29[1].v[i],sym2v));
139 metric = vec_sr(metric,(vector unsigned char)(3));
140 m_metric = (vector unsigned char)(31) - metric;
143 m0 = vec_adds(vp->old_metrics->v[i],metric);
144 m3 = vec_adds(vp->old_metrics->v[8+i],metric);
166 /* Find smallest metric an
[all...]
H A Dssebfly27.s71 movq (8*\GROUP)(%esi),%mm0 # Incoming path metric, high bit = 0
72 movq ((8*\GROUP)+32)(%esi),%mm3 # Incoming path metric, high bit = 1
126 movl (%edi),%eax # extract first output metric
132 # Normalize by finding smallest metric and subtracting it
143 # crunch down to single lowest metric
156 # mm0 now contains lowest metric in all 8 bytes
157 # subtract it from every output metric
185 # stash metric pointers
H A Dviterbi615_av.c20 metric_t metrics1; /* path metric buffer 1 */
21 metric_t metrics2; /* path metric buffer 2 */
136 vector unsigned short metric,m_metric,m0,m1,m2,m3,survivor0,survivor1; local
141 * metric and m_metric (-metric) are in the range 0-1530
146 metric = vec_add(m0,m1);
147 metric = vec_add(metric,m2);
148 m_metric = vec_sub((vector unsigned short)(1530),metric);
151 m0 = vec_adds(vp->old_metrics->v[i],metric);
[all...]
H A Dviterbi39_av.c20 metric_t metrics1; /* path metric buffer 1 */
21 metric_t metrics2; /* path metric buffer 2 */
133 vector unsigned short metric,m_metric,m0,m1,m2,m3,survivor0,survivor1; local
142 metric = vec_add(m0,m1);
143 m_metric = vec_sub((vector unsigned short)(765),metric);
146 m0 = vec_adds(vp->old_metrics->v[i],metric);
147 m3 = vec_adds(vp->old_metrics->v[16+i],metric);
177 /* Experimentally determine metric spread
206 printf("metric spread = %d\n",max_spread);
213 * So by looking at one arbitrary metric w
[all...]
H A Dviterbi39_mmx.c19 metric_t metrics1; /* path metric buffer 1 */
20 metric_t metrics2; /* path metric buffer 2 */
141 __m64 decision0,decision1,metric,m_metric,m0,m1,m2,m3,survivor0,survivor1; local
146 * metric and m_metric (-metric) are in the range 0-1530
149 metric = _mm_add_pi16(_mm_xor_si64(Branchtab39[2].v[i],sym2v),m0);
150 m_metric = _mm_sub_pi16(_mm_set1_pi16(765),metric);
153 m0 = _mm_add_pi16(vp->old_metrics->v[i],metric);
154 m3 = _mm_add_pi16(vp->old_metrics->v[32+i],metric);
H A Dviterbi39_sse.c20 metric_t metrics1; /* path metric buffer 1 */
21 metric_t metrics2; /* path metric buffer 2 */
139 __m64 decision0,decision1,metric,m_metric,m0,m1,m2,m3,survivor0,survivor1; local
144 * metric and m_metric (-metric) are in the range 0-765
147 metric = _mm_add_pi16(_mm_xor_si64(Branchtab39[2].v[i],sym2v),m0);
148 m_metric = _mm_sub_pi16(_mm_set1_pi16(765),metric);
151 m0 = _mm_adds_pi16(vp->old_metrics->v[i],metric);
152 m3 = _mm_adds_pi16(vp->old_metrics->v[32+i],metric);
170 * Max metric sprea
[all...]
H A Dviterbi39_sse2.c20 metric_t metrics1; /* path metric buffer 1 */
21 metric_t metrics2; /* path metric buffer 2 */
135 __m128i decision0,decision1,metric,m_metric,m0,m1,m2,m3,survivor0,survivor1; local
140 * metric and m_metric (-metric) are in the range 0-765
143 metric = _mm_add_epi16(_mm_xor_si128(Branchtab39[2].v[i],sym2v),m0);
144 m_metric = _mm_sub_epi16(_mm_set1_epi16(765),metric);
147 m0 = _mm_adds_epi16(vp->old_metrics->v[i],metric);
148 m3 = _mm_adds_epi16(vp->old_metrics->v[16+i],metric);
171 /* Find smallest metric an
[all...]
H A Dviterbi615_mmx.c19 metric_t metrics1; /* path metric buffer 1 */
20 metric_t metrics2; /* path metric buffer 2 */
139 __m64 decision0,decision1,metric,m_metric,m0,m1,m2,m3,survivor0,survivor1; local
144 * metric and m_metric (-metric) are in the range 0-1530
149 metric = _mm_add_pi16(m0,_mm_add_pi16(m1,m2));
150 m_metric = _mm_sub_pi16(_mm_set1_pi16(1530),metric);
153 m0 = _mm_add_pi16(vp->old_metrics->v[i],metric);
154 m3 = _mm_add_pi16(vp->old_metrics->v[2048+i],metric);
/external/autotest/tko/
H A Dnightly.py91 def collect_raw_scores(runs, metric):
96 vals = perf.get_metric_at_point(runs[platform], metric)
102 def collect_scaled_scores(metric, test_runs, regressed_platforms, relative):
114 metric)
125 def collect_twoway_scores(metric, antagonists, twoway_runs, relative):
131 vals = perf.get_metric_at_point(runs, metric)
151 def find_regressions(kernels, test_runs, metric):
164 scores[k] = collect_raw_scores(test_runs[k], metric)
214 # for 1 benchmark metric over all kernels (rows),
252 print "<p> <b>Bold value:</b> Average of this metric, the
[all...]
/external/tcpdump/
H A Dprint-igrp.c73 u_int metric, mtu; local
87 metric = bandwidth + delay;
88 if (metric > 0xffffff)
89 metric = 0xffffff;
94 igr->igr_rel, igr->igr_ld, metric,
H A Dprint-dvmrp.c168 register int metric, done; local
207 metric = *bp++;
208 done = metric & 0x80;
209 metric &= 0x7f;
210 ND_PRINT((ndo, "\n\t %s metric %d", intoa(htonl(origin)),
211 metric));
257 register u_char metric; local
265 metric = *bp++;
273 ipaddr_string(ndo, bp), metric, thresh));
289 register u_char metric, thres local
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtcp_sender_unittest.cc538 RTCPVoIPMetric metric; local
539 metric.lossRate = 1;
540 metric.discardRate = 2;
541 metric.burstDensity = 3;
542 metric.gapDensity = 4;
543 metric.burstDuration = 0x1111;
544 metric.gapDuration = 0x2222;
545 metric.roundTripDelay = 0x3333;
546 metric.endSystemDelay = 0x4444;
547 metric
[all...]
H A Drtcp_packet_unittest.cc472 RTCPVoIPMetric metric; local
473 metric.lossRate = 1;
474 metric.discardRate = 2;
475 metric.burstDensity = 3;
476 metric.gapDensity = 4;
477 metric.burstDuration = 0x1111;
478 metric.gapDuration = 0x2222;
479 metric.roundTripDelay = 0x3333;
480 metric.endSystemDelay = 0x4444;
481 metric
533 VoipMetric metric; local
554 VoipMetric metric; local
[all...]
/external/ImageMagick/www/api/
H A Dcompare.php65 const MetricType metric,double *distortion,ExceptionInfo *exception)
83 <dt>metric</dt>
84 <dd>the metric. </dd>
98 <p>GetImageDistortion() compares one or more pixel channels of an image to a reconstructed image and returns the specified distortion metric.</p>
104 const Image *reconstruct_image,const MetricType metric,
123 <dt>metric</dt>
124 <dd>the metric. </dd>
138 <p>GetImageDistortions() compares the pixel channels of an image to a reconstructed image and returns the specified distortion metric for each channel.</p>
144 const Image *reconstruct_image,const MetricType metric,
163 <dt>metric</d
[all...]
/external/chromium-trace/catapult/systrace/atrace_helper/jni/
H A Dprocess_memory_stats.cc43 bool ReadSmapsMetric(const char* line, const char* metric, uint64_t* res) { argument
44 if (strncmp(line, metric, strlen(metric)))
/external/libyuv/files/util/
H A Dpsnr_main.cc40 struct metric { struct
246 metric* cur_distortion_psnr,
247 metric* distorted_frame,
391 metric* const distortion_psnr = new metric[num_rec];
392 metric* const distortion_ssim = new metric[num_rec];
394 metric* cur_distortion_psnr = &distortion_psnr[cur_rec];
485 metric distorted_frame;
486 metric* cur_distortion_psn
[all...]

Completed in 628 milliseconds

1234