Searched defs:DIV_ROUND_CLOSEST (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/sys/arm/nvidia/tegra124/
H A Dtegra124_cpufreq.c214 #define DIV_ROUND_CLOSEST(val, div) (((val) + ((div) / 2)) / (div)) macro
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dkernel.h497 #define DIV_ROUND_CLOSEST(x, divisor) (((x) + ((divisor) / 2)) / (divisor)) macro
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_os_freebsd.h219 #define DIV_ROUND_CLOSEST(n,d) (((n) + (d) / 2) / (d)) macro

Completed in 70 milliseconds