Searched defs:ALIGN_UP (Results 1 – 7 of 7) sorted by relevance
19 #define ALIGN_UP(number, align) (((number) & ((align) - 1)) ? \ macro
69 #define ALIGN_UP(n, alignment) \ macro
123 #define ALIGN_UP(x, align_to) (((x) + ((align_to)-1)) & ~((align_to)-1)) macro
197 #define ALIGN_UP(p, size) (__typeof__(p))(((uintptr_t)(p) + ((size) - 1)) & ~((size) - 1)) macro
48 #define ALIGN_UP(a, b) ALIGN(a, b) macro
55 #define ALIGN_UP(x, align_to) (((x) + ((align_to)-1)) & ~((align_to)-1)) macro
437 #define ALIGN_UP(value, size) ((value) + ((value) % (size) > 0 ? \ macro