Searched defs:ALIGN (Results 1 – 7 of 7) sorted by relevance
28 # define ALIGN(n) .p2align n macro
43 #define ALIGN(x, y) ((y) * DIV_ROUND_UP((x), (y))) macro
56 #define ALIGN(x, alignment) (((x) + ((alignment)-1)) & ~((alignment)-1)) macro
31 #define ALIGN(x,y) (((x) + ((y) - 1)) & ~((y) - 1)) macro