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

/freebsd-13-stable/sys/compat/linuxkpi/common/include/linux/
H A Dkernel.h500 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro
501 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
502 #define round_down(x, y) ((x) & ~__round_mask(x, y))

Completed in 103 milliseconds