Home
last modified time | relevance | path

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

/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dmath.h43 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro
44 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
45 #define round_down(x, y) ((x) & ~__round_mask(x, y))