HomeSort by: relevance | last modified time | path
    Searched defs:best_error (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/dev/pci/
tdvfb.c 678 int best_m, best_n1, best_error; local in function:tdvfb_gendac_calc_pll
690 best_error = freq;
709 if ((abs(fout - freq) < best_error) && (m > 0)) {
712 best_error = abs(fout - freq);
713 if (200*best_error < freq) break;
sv.c 629 int a, n, m, best_n, best_m, best_error; local in function:sv_set_format
636 best_error = 10000000;
656 if (error < best_error) {
657 best_error = error;
voodoofb.c 1355 int m, n, k, best_m, best_n, best_k, f_cur, best_error; local in function:voodoofb_calc_pll
1358 best_error = freq;
1376 if (freq - f_cur < best_error) {
1377 best_error = freq - f_cur;
1387 if (ABS(f_cur - freq) < best_error) {
1388 best_error = ABS(f_cur - freq);
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_display.c 1126 uint32_t best_error = 0xffffffff; local in function:radeon_compute_pll_legacy
1231 if ((best_vco == 0 && error < best_error) ||
1233 ((best_error > 100 && error < best_error - 100) ||
1234 (abs(error - best_error) < 100 && vco_diff < best_vco_diff)))) {
1240 best_error = error;
1249 best_error = error;
1262 best_error = error;

Completed in 16 milliseconds