Searched refs:__round_mask (Results 1 – 2 of 2) sorted by relevance
/linux-4.4.14/tools/include/linux/ |
D | kernel.h | 103 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 104 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) 105 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|
/linux-4.4.14/include/linux/ |
D | kernel.h | 62 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 63 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) 64 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|