Searched refs:__round_mask (Results 1 - 4 of 4) sorted by relevance
/third_party/libdrm/amdgpu/ |
H A D | amdgpu_internal.h | 39 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 40 #define ROUND_UP(x, y) ((((x)-1) | __round_mask(x, y))+1) 41 #define ROUND_DOWN(x, y) ((x) & ~__round_mask(x, y))
|
/third_party/exfatprogs/include/ |
H A D | libexfat.h | 19 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 20 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) 21 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|
/third_party/libdrm/omap/ |
H A 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)
|
/third_party/f2fs-tools/include/ |
H A D | f2fs_fs.h | 653 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro 654 #define round_down(x, y) ((x) & ~__round_mask(x, y))
|
Completed in 6 milliseconds