Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/include/linux/
H A Dkernel.h53 #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 Dmxsboot.c18 #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 Dimage-fit.c38 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro
39 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)