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

  /src/sys/arch/arm/sunxi/
sunxi_ccu_fractional.c 110 u_int parent_rate, best_rate, best_m; local in function:sunxi_ccu_fractional_set_rate
152 best_rate = 0;
160 best_rate = rate;
167 if (best_rate == 0)
189 u_int parent_rate, best_rate; local in function:sunxi_ccu_fractional_round_rate
219 best_rate = 0;
227 best_rate = rate;
233 return best_rate;
sunxi_ccu_nm.c 107 u_int parent_rate, best_rate, best_n, best_m, best_parent; local in function:sunxi_ccu_nm_set_rate
124 best_rate = 0;
153 if (diff >= 0 && rate > best_rate) {
155 best_rate = rate;
164 best_rate = rate;
174 if (best_rate == 0)
sunxi_twi.c 94 u_int n, m, best_rate; local in function:sunxi_twi_set_clock
98 for (best_rate = 0, n = 0; n < 8; n++) {
102 if (tmp_rate <= rate && tmp_rate > best_rate) {
103 best_rate = tmp_rate;
sunxi_hdmiphy.c 369 u_int prediv, best_prediv, best_rate; local in function:sunxi_hdmiphy_set_rate
376 best_rate = 0;
381 if (diff >= 0 && tmp_rate > best_rate) {
382 best_rate = tmp_rate;
387 if (best_rate == 0)

Completed in 13 milliseconds