Searched refs:DIV_ROUND_CLOSEST (Results 1 – 9 of 9) sorted by relevance
/freebsd/sys/dev/clk/xilinx/ |
H A D | zynqmp_clk_div.c | 41 #define DIV_ROUND_CLOSEST(n, d) (((n) + (d) / 2) / (d)) macro 91 div = DIV_ROUND_CLOSEST(fparent, *fout); in zynqmp_clk_div_set_freq()
|
/freebsd/sys/arm64/nvidia/tegra210/ |
H A D | tegra210_cpufreq.c | 167 #define DIV_ROUND_CLOSEST(val, div) (((val) + ((div) / 2)) / (div)) macro 199 uv = DIV_ROUND_CLOSEST(ent->c2 * sc->speedo_value, scale); in freq_to_voltage() 200 uv = DIV_ROUND_CLOSEST((uv + ent->c1) * sc->speedo_value, scale) + in freq_to_voltage()
|
/freebsd/sys/arm/nvidia/tegra124/ |
H A D | tegra124_cpufreq.c | 210 #define DIV_ROUND_CLOSEST(val, div) (((val) + ((div) / 2)) / (div)) macro 241 uv = DIV_ROUND_CLOSEST(ent->c2 * sc->speedo_value, scale); in freq_to_voltage() 242 uv = DIV_ROUND_CLOSEST((uv + ent->c1) * sc->speedo_value, scale) + in freq_to_voltage()
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | math.h | 51 #define DIV_ROUND_CLOSEST(x, divisor) (((x) + ((divisor) / 2)) / (divisor)) macro
|
/freebsd/sys/arm64/rockchip/ |
H A D | rk_i2s.c | 127 #define DIV_ROUND_CLOSEST(n,d) (((n) + (d) / 2) / (d)) macro 609 bus_clock_div = DIV_ROUND_CLOSEST(clk_freq, bus_clk_freq); in rk_i2s_dai_set_chanspeed()
|
/freebsd/sys/dev/drm2/ |
H A D | drm_os_freebsd.h | 233 #define DIV_ROUND_CLOSEST(n,d) (((n) + (d) / 2) / (d)) macro
|
/freebsd/sys/contrib/dev/mediatek/mt76/mt7915/ |
H A D | init.c | 89 val = clamp_val(DIV_ROUND_CLOSEST(val, 1000), 60, 130); in mt7915_thermal_temp_store()
|
/freebsd/sys/contrib/dev/rtw89/ |
H A D | rtw8852c.c | 1015 sco = DIV_ROUND_CLOSEST(1 << 18, central_freq); in rtw8852c_ctrl_ch() 1035 sco = DIV_ROUND_CLOSEST(1 << 18, central_freq); in rtw8852c_bw_setting()
|
/freebsd/sys/contrib/dev/rtw88/ |
H A D | rtw8822c.c | 3978 tmp_gs = DIV_ROUND_CLOSEST(tmp_gs, 10); in rtw8822c_dpk_cal_gs()
|