Searched refs:__round_mask (Results 1 – 2 of 2) sorted by relevance
130 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro131 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)132 #define round_down(x, y) ((x) & ~__round_mask(x, y))
49 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro50 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)