Searched refs:__round_mask (Results 1 – 2 of 2) sorted by relevance
63 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro64 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)65 #define round_down(x, y) ((x) & ~__round_mask(x, y))
17 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro18 #define round_down(x, y) ((x) & ~__round_mask(x, y))
Completed in 17 milliseconds