HomeSort by relevance Sort by last modified time
    Searched refs:__round_mask (Results 1 - 4 of 4) sorted by null

  /external/libdrm/amdgpu/
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))
  /system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/include/linux/kernel/
kernel.h 74 #define __round_mask(x,y) ((__typeof__(x)) ((y) - 1)) macro
75 #define round_up(x,y) ((((x) - 1) | __round_mask(x, y)) + 1)
76 #define round_down(x,y) ((x) & ~__round_mask(x, y))
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/include/linux/kernel/
kernel.h 130 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) macro
131 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
132 #define round_down(x, y) ((x) & ~__round_mask(x, y))
  /external/libdrm/omap/
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)

Completed in 78 milliseconds