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

/external/netperf/
H A Dnetcpu_osx.c105 float correction_factor; local
116 correction_factor = (float) 1.0 +
120 correction_factor = (float) 1.0;
124 fprintf(where, "correction factor: %f\n", correction_factor);
134 lib_local_cpu_util *= correction_factor;
H A Dnetcpu_perfstat.c272 float correction_factor; local
282 correction_factor = (float) 1.0 +
286 correction_factor = (float) 1.0;
329 lib_local_cpu_util *= correction_factor;
H A Dnetcpu_procstat.c200 float correction_factor; local
210 correction_factor = (float) 1.0 +
214 correction_factor = (float) 1.0;
250 lib_local_cpu_util *= correction_factor;
H A Dnetcpu_pstat.c229 float correction_factor; local
239 correction_factor = (float) 1.0 +
243 correction_factor = (float) 1.0;
286 lib_local_cpu_util *= correction_factor;
H A Dnetcpu_kstat.c348 float correction_factor; local
359 correction_factor = (float) 1.0 +
363 correction_factor = (float) 1.0;
398 lib_local_cpu_util *= correction_factor;
H A Dnetcpu_kstat10.c308 float correction_factor; local
342 correction_factor = (float) 1.0 +
346 correction_factor = (float) 1.0;
542 lib_local_cpu_util *= correction_factor;
H A Dnetcpu_looper.c589 float correction_factor;
600 correction_factor = (float) 1.0 +
604 correction_factor = (float) 1.0;
641 lib_local_cpu_util *= correction_factor;
588 float correction_factor; local
H A Dnetcpu_ntperf.c473 float correction_factor; local
482 correction_factor = (float) 1.0 +
486 correction_factor = (float) 1.0;
490 fprintf(where, "correction factor: %f\n", correction_factor);
494 lib_local_cpu_util *= correction_factor;
H A Dnetcpu_pstatnew.c199 float correction_factor; local
210 correction_factor = (float) 1.0 +
214 correction_factor = (float) 1.0;
378 lib_local_cpu_util *= correction_factor;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dratectrl.c326 double correction_factor)
328 int Bpm = (int)(.5 + correction_factor * vp8_bits_per_mb[frame_kind][Q]);
1104 int correction_factor = 100; local
1154 correction_factor = (100 * cpi->projected_frame_size) / projected_size_based_on_q;
1173 if (correction_factor > 102)
1176 correction_factor = (int)(100.5 + ((correction_factor - 100) * adjustment_limit));
1177 rate_correction_factor = ((rate_correction_factor * correction_factor) / 100);
1183 else if (correction_factor < 99)
1186 correction_factor
325 estimate_bits_at_q(int frame_kind, int Q, int MBs, double correction_factor) argument
1240 double correction_factor; local
[all...]
H A Dfirstpass.c958 double correction_factor; local
968 correction_factor = pow(error_term, power_term);
971 correction_factor =
972 (correction_factor < 0.05)
973 ? 0.05 : (correction_factor > 5.0) ? 5.0 : correction_factor;
975 return correction_factor;
/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c326 double correction_factor)
328 int Bpm = (int)(.5 + correction_factor * vp8_bits_per_mb[frame_kind][Q]);
1104 int correction_factor = 100; local
1154 correction_factor = (100 * cpi->projected_frame_size) / projected_size_based_on_q;
1173 if (correction_factor > 102)
1176 correction_factor = (int)(100.5 + ((correction_factor - 100) * adjustment_limit));
1177 rate_correction_factor = ((rate_correction_factor * correction_factor) / 100);
1183 else if (correction_factor < 99)
1186 correction_factor
325 estimate_bits_at_q(int frame_kind, int Q, int MBs, double correction_factor) argument
1240 double correction_factor; local
[all...]
H A Dfirstpass.c958 double correction_factor; local
968 correction_factor = pow(error_term, power_term);
971 correction_factor =
972 (correction_factor < 0.05)
973 ? 0.05 : (correction_factor > 5.0) ? 5.0 : correction_factor;
975 return correction_factor;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.c97 double correction_factor) {
103 return (int)(0.5 + (enumerator * correction_factor / q));
107 double correction_factor) {
108 const int bpm = (int)(vp9_rc_bits_per_mb(frame_type, q, correction_factor));
301 int correction_factor = 100; local
318 correction_factor = (100 * cpi->rc.projected_frame_size) /
336 if (correction_factor > 102) {
338 correction_factor = (int)(100 + ((correction_factor - 100) *
340 rate_correction_factor = (rate_correction_factor * correction_factor) / 10
96 vp9_rc_bits_per_mb(FRAME_TYPE frame_type, int qindex, double correction_factor) argument
106 estimate_bits_at_q(FRAME_TYPE frame_type, int q, int mbs, double correction_factor) argument
366 const double correction_factor = get_rate_correction_factor(cpi); local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_ratectrl.c175 double correction_factor,
182 return (int)(enumerator * correction_factor / q);
186 double correction_factor,
188 const int bpm = (int)(vp9_rc_bits_per_mb(frame_type, q, correction_factor,
392 int correction_factor = 100; local
414 correction_factor = (100 * cpi->rc.projected_frame_size) /
432 if (correction_factor > 102) {
434 correction_factor = (int)(100 + ((correction_factor - 100) *
436 rate_correction_factor = (rate_correction_factor * correction_factor) / 10
174 vp9_rc_bits_per_mb(FRAME_TYPE frame_type, int qindex, double correction_factor, vpx_bit_depth_t bit_depth) argument
185 estimate_bits_at_q(FRAME_TYPE frame_type, int q, int mbs, double correction_factor, vpx_bit_depth_t bit_depth) argument
462 const double correction_factor = get_rate_correction_factor(cpi); local
[all...]

Completed in 266 milliseconds