Searched defs:ALIGN_UP (Results 1 – 7 of 7) sorted by relevance
19 #define ALIGN_UP(number, align) (((number) & ((align) - 1)) ? \ macro
68 #define ALIGN_UP(n, alignment) \ macro
180 #define ALIGN_UP(x, align_to) (((x) + ((align_to)-1)) & ~((align_to)-1)) macro
123 #define ALIGN_UP(x, align_to) (((x) + ((align_to)-1)) & ~((align_to)-1)) macro
217 #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
460 #define ALIGN_UP(addrs, size) ALIGN_DOWN(((addrs) + (size) - 1), (size)) macro