__round_mask       71 include/linux/kernel.h #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
__round_mask       80 include/linux/kernel.h #define round_down(x, y) ((x) & ~__round_mask(x, y))
__round_mask      116 tools/include/linux/kernel.h #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
__round_mask      117 tools/include/linux/kernel.h #define round_down(x, y) ((x) & ~__round_mask(x, y))
__round_mask        8 tools/testing/selftests/bpf/progs/test_xdp_meta.c #define round_up(x, y) ((((x) - 1) | __round_mask(x, y)) + 1)