Home
last modified time | relevance | path

Searched refs:DIV_ROUND_CLOSEST (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/dev/clk/xilinx/
H A Dzynqmp_clk_div.c41 #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 Dtegra210_cpufreq.c167 #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 Dtegra124_cpufreq.c210 #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 Dmath.h51 #define DIV_ROUND_CLOSEST(x, divisor) (((x) + ((divisor) / 2)) / (divisor)) macro
/freebsd/sys/arm64/rockchip/
H A Drk_i2s.c127 #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 Ddrm_os_freebsd.h233 #define DIV_ROUND_CLOSEST(n,d) (((n) + (d) / 2) / (d)) macro
/freebsd/sys/contrib/dev/mediatek/mt76/mt7915/
H A Dinit.c89 val = clamp_val(DIV_ROUND_CLOSEST(val, 1000), 60, 130); in mt7915_thermal_temp_store()
/freebsd/sys/contrib/dev/rtw89/
H A Drtw8852c.c1015 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 Drtw8822c.c3978 tmp_gs = DIV_ROUND_CLOSEST(tmp_gs, 10); in rtw8822c_dpk_cal_gs()