Searched defs:DIV_ROUND_CLOSEST (Results 1 – 3 of 3) sorted by relevance
214 #define DIV_ROUND_CLOSEST(val, div) (((val) + ((div) / 2)) / (div)) macro
525 #define DIV_ROUND_CLOSEST(x, divisor) (((x) + ((divisor) / 2)) / (divisor)) macro
235 #define DIV_ROUND_CLOSEST(n,d) (((n) + (d) / 2) / (d)) macro