Searched refs:__round_mask (Results 1 – 3 of 3) sorted by relevance
| /rk3399_rockchip-uboot/include/linux/ |
| H A D | kernel.h | 53 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 54 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) 55 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | mxsboot.c | 18 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 19 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|
| /rk3399_rockchip-uboot/common/ |
| H A D | image-fit.c | 38 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 39 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
|