Searched refs:correction_factor (Results 1 - 15 of 15) sorted by relevance

/external/netperf/src/
H A Dnetcpu_osx.c111 float correction_factor; local
123 correction_factor = (float) 1.0 +
127 correction_factor = (float) 1.0;
131 fprintf(where, "correction factor: %f\n", correction_factor);
142 lib_local_cpu_stats.cpu_util *= correction_factor;
H A Dnetcpu_pstat.c229 float correction_factor; local
240 correction_factor = (float) 1.0 +
244 correction_factor = (float) 1.0;
268 lib_local_per_cpu_util[i] *= correction_factor;
277 correction_factor);
H A Dnetcpu_pstatnew.c236 float correction_factor; local
247 correction_factor = (float) 1.0 +
251 correction_factor = (float) 1.0;
415 lib_local_per_cpu_util[i] *= correction_factor;
421 correction_factor);
H A Dnetcpu_procstat.c251 float correction_factor; local
264 correction_factor = (float) 1.0 +
268 correction_factor = (float) 1.0;
320 lib_local_per_cpu_util[i] *= correction_factor;
336 correction_factor);
342 lib_local_cpu_stats.fldname = ((correction_factor \
H A Dnetcpu_kstat.c348 float correction_factor; local
360 correction_factor = (float) 1.0 +
364 correction_factor = (float) 1.0;
394 lib_local_per_cpu_util[i] *= correction_factor;
H A Dnetcpu_perfstat.c276 float correction_factor; local
287 correction_factor = (float) 1.0 +
291 correction_factor = (float) 1.0;
334 lib_local_cpu_stats.cpu_util *= correction_factor;
H A Dnetcpu_kstat10.c349 float correction_factor; local
383 correction_factor = (float) 1.0 +
387 correction_factor = (float) 1.0;
569 lib_local_per_cpu_util[i] *= correction_factor;
575 correction_factor);
H A Dnetcpu_ntperf.c453 float correction_factor; local
464 correction_factor = (float) 1.0 +
468 correction_factor = (float) 1.0;
472 fprintf(where, "correction factor: %f\n", correction_factor);
476 lib_local_cpu_stats.cpu_util *= correction_factor;
H A Dnetcpu_looper.c589 float correction_factor;
601 correction_factor = (float) 1.0 +
605 correction_factor = (float) 1.0;
637 lib_local_per_cpu_util[i] *= correction_factor;
588 float correction_factor; local
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_aq_cyclicrefresh.h84 double correction_factor);
89 double correction_factor);
H A Dvp9_ratectrl.h181 double correction_factor, vpx_bit_depth_t bit_depth);
253 double correction_factor, vpx_bit_depth_t bit_depth);
H A Dvp9_aq_cyclicrefresh.c94 double correction_factor) {
108 correction_factor, cm->bit_depth) +
112 mbs, correction_factor, cm->bit_depth) +
116 mbs, correction_factor, cm->bit_depth));
126 double correction_factor) {
138 correction_factor, cm->bit_depth) +
141 correction_factor, cm->bit_depth));
93 vp9_cyclic_refresh_estimate_bits_at_q(const VP9_COMP *cpi, double correction_factor) argument
125 vp9_cyclic_refresh_rc_bits_per_mb(const VP9_COMP *cpi, int i, double correction_factor) argument
H A Dvp9_ratectrl.c194 double correction_factor, vpx_bit_depth_t bit_depth) {
198 assert(correction_factor <= MAX_BPB_FACTOR &&
199 correction_factor >= MIN_BPB_FACTOR);
203 return (int)(enumerator * correction_factor / q);
207 double correction_factor,
210 (int)(vp9_rc_bits_per_mb(frame_type, q, correction_factor, bit_depth));
476 int correction_factor = 100; local
501 correction_factor = (int)((100 * (int64_t)cpi->rc.projected_frame_size) /
507 0.25 + 0.5 * VPXMIN(1, fabs(log10(0.01 * correction_factor)));
512 if (correction_factor > 11
193 vp9_rc_bits_per_mb(FRAME_TYPE frame_type, int qindex, double correction_factor, vpx_bit_depth_t bit_depth) argument
206 vp9_estimate_bits_at_q(FRAME_TYPE frame_type, int q, int mbs, double correction_factor, vpx_bit_depth_t bit_depth) argument
554 const double correction_factor = get_rate_correction_factor(cpi); local
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c280 double correction_factor) {
281 int Bpm = (int)(.5 + correction_factor * vp8_bits_per_mb[frame_kind][Q]);
1031 int correction_factor = 100; local
1080 correction_factor =
1094 if (correction_factor > 102) {
1096 correction_factor =
1097 (int)(100.5 + ((correction_factor - 100) * adjustment_limit));
1099 ((rate_correction_factor * correction_factor) / 100);
1105 } else if (correction_factor < 99) {
1107 correction_factor
279 estimate_bits_at_q(int frame_kind, int Q, int MBs, double correction_factor) argument
1160 double correction_factor; local
[all...]
H A Dfirstpass.c898 double correction_factor; local
908 correction_factor = pow(error_term, power_term);
911 correction_factor = (correction_factor < 0.05)
913 : (correction_factor > 5.0) ? 5.0 : correction_factor;
915 return correction_factor;

Completed in 242 milliseconds