Searched refs:__round_mask (Results 1 – 3 of 3) sorted by relevance
/external/libdrm/amdgpu/ |
D | amdgpu_internal.h | 42 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 43 #define ROUND_UP(x, y) ((((x)-1) | __round_mask(x, y))+1) 44 #define ROUND_DOWN(x, y) ((x) & ~__round_mask(x, y))
|
/external/libdrm/omap/ |
D | omap_drm.c | 49 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 50 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
|
/external/f2fs-tools/include/ |
D | f2fs_fs.h | 394 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 395 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|