Searched defs:ALIGN (Results 1 – 8 of 8) sorted by relevance
26 #define ALIGN(value, alignment) (((value) + (alignment)-1) & ~((alignment)-1)) macro
28 # define ALIGN(n) .p2align n macro
43 #define ALIGN(x, y) ((y) * DIV_ROUND_UP((x), (y))) macro
69 #define ALIGN(x, alignment) ( ((x) + ((alignment) - 1)) & ~((alignment) - 1) ) macro
30 #define ALIGN(x,y) (((x) + ((y) - 1)) & ~((y) - 1)) macro