Home
last modified time | relevance | path

Searched refs:best_score (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/kernel/sound/soc/codecs/
H A Dtlv320aic23.c247 unsigned best_score = UINT_MAX; in find_rate() local
273 if (best_score > score) { in find_rate()
274 best_score = score; in find_rate()
282 if ((score != UINT_MAX) && (best_score >= score)) { in find_rate()
283 best_score = score; in find_rate()
/OK3568_Linux_fs/external/xserver/glx/
H A Dglxscreens.c256 int best_score = 0; in pickFBConfig() local
309 if (score > best_score) { in pickFBConfig()
311 best_score = score; in pickFBConfig()
/OK3568_Linux_fs/kernel/drivers/gpu/drm/
H A Ddrm_client_modeset.c492 int my_score, best_score, score; in drm_client_pick_crtcs() local
503 best_score = drm_client_pick_crtcs(client, connectors, connector_count, in drm_client_pick_crtcs()
506 return best_score; in drm_client_pick_crtcs()
510 return best_score; in drm_client_pick_crtcs()
547 if (score > best_score) { in drm_client_pick_crtcs()
548 best_score = score; in drm_client_pick_crtcs()
554 return best_score; in drm_client_pick_crtcs()
/OK3568_Linux_fs/kernel/drivers/of/
H A Dfdt.c818 unsigned int best_score = ~1, score = 0; in of_flat_dt_match_machine() local
823 if (score > 0 && score < best_score) { in of_flat_dt_match_machine()
825 best_score = score; in of_flat_dt_match_machine()
H A Dbase.c1086 int score, best_score = 0; in __of_match_node() local
1094 if (score > best_score) { in __of_match_node()
1096 best_score = score; in __of_match_node()
/OK3568_Linux_fs/external/xserver/hw/xfree86/modes/
H A Dxf86Crtc.c967 int best_score; in xf86PickCrtcs() local
979 best_score = xf86PickCrtcs(scrn, best_crtcs, modes, n + 1, width, height); in xf86PickCrtcs()
981 return best_score; in xf86PickCrtcs()
985 return best_score; in xf86PickCrtcs()
1031 if (score > best_score) { in xf86PickCrtcs()
1032 best_score = score; in xf86PickCrtcs()
1037 return best_score; in xf86PickCrtcs()
/OK3568_Linux_fs/external/xserver/
H A DChangeLog133338 glx: Inialize best_score before calculating visual scores