Home
last modified time | relevance | path

Searched refs:__round_mask (Results 1 – 4 of 4) sorted by relevance

/third_party/libdrm/amdgpu/
Damdgpu_internal.h39 #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/
Dlibexfat.h17 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro
18 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
19 #define round_down(x, y) ((x) & ~__round_mask(x, y))
/third_party/libdrm/omap/
Domap_drm.c45 #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/
Df2fs_fs.h649 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro
650 #define round_down(x, y) ((x) & ~__round_mask(x, y))