Searched defs:correction_factor (Results 1 - 11 of 11) 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/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c334 double correction_factor)
336 int Bpm = (int)(.5 + correction_factor * vp8_bits_per_mb[frame_kind][Q]);
1097 int correction_factor = 100; local
1145 correction_factor = (100 * cpi->projected_frame_size) / projected_size_based_on_q;
1164 if (correction_factor > 102)
1167 correction_factor = (int)(100.5 + ((correction_factor - 100) * adjustment_limit));
1168 rate_correction_factor = ((rate_correction_factor * correction_factor) / 100);
1174 else if (correction_factor < 99)
1177 correction_factor
333 estimate_bits_at_q(int frame_kind, int Q, int MBs, double correction_factor) argument
1228 double correction_factor; local
[all...]
H A Dfirstpass.c953 double correction_factor; local
963 correction_factor = pow(error_term, power_term);
966 correction_factor =
967 (correction_factor < 0.05)
968 ? 0.05 : (correction_factor > 5.0) ? 5.0 : correction_factor;
970 return correction_factor;

Completed in 172 milliseconds