Home
last modified time | relevance | path

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

/external/libdrm/amdgpu/
Damdgpu_internal.h42 #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/
Domap_drm.c49 #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/
Df2fs_fs.h394 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro
395 #define round_down(x, y) ((x) & ~__round_mask(x, y))