Searched refs:__round_mask (Results 1 – 6 of 6) sorted by relevance
| /OK3568_Linux_fs/kernel/tools/include/linux/ |
| H A D | kernel.h | 113 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 114 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) 115 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/ |
| H A D | test_xdp_meta.c | 7 #define __round_mask(x, y) ((__typeof__(x))((y) - 1)) macro 8 #define round_up(x, y) ((((x) - 1) | __round_mask(x, y)) + 1)
|
| /OK3568_Linux_fs/u-boot/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))
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | kernel.h | 63 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 72 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) 81 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|
| /OK3568_Linux_fs/u-boot/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))
|
| /OK3568_Linux_fs/u-boot/common/ |
| H A D | image-fit.c | 35 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 36 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
|