Searched refs:__round_mask (Results 1 – 7 of 7) sorted by relevance
/external/libdrm/amdgpu/ |
D | amdgpu_internal.h | 38 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 39 #define ROUND_UP(x, y) ((((x)-1) | __round_mask(x, y))+1) 40 #define ROUND_DOWN(x, y) ((x) & ~__round_mask(x, y))
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
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)
|
/external/u-boot/include/linux/ |
D | kernel.h | 54 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 55 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) 56 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|
/external/libkmsxx/kms++/src/omap/ |
D | omapframebuffer.cpp | 20 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 21 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
|
/external/libdrm/omap/ |
D | omap_drm.c | 45 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 46 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
|
/external/u-boot/tools/ |
D | mxsboot.c | 17 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 18 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|
/external/f2fs-tools/include/ |
D | f2fs_fs.h | 502 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 503 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|