Searched defs:ALIGN (Results 1 – 9 of 9) sorted by relevance
28 # define ALIGN(n) .p2align n macro
43 #define ALIGN(x, y) ((y)*DIV_ROUND_UP((x), (y))) macro
48 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES) macro
90 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES) macro
62 #define ALIGN(x, alignment) (((x) + ((alignment)-1)) & ~((alignment)-1)) macro
31 #define ALIGN(x,y) (((x) + ((y) - 1)) & ~((y) - 1)) macro