Searched defs:ALIGN (Results 1 – 4 of 4) sorted by relevance
38 #define ALIGN(p) (((unsigned int)(p) + ALIGNBYTES) &~ ALIGNBYTES) macro
76 #define ALIGN(addr, align) addr,:align macro78 #define ALIGN(addr, align) addr:align macro
39 # define ALIGN(n) .p2align n macro
55 #define ALIGN(x, a) (((x) + (a - 1)) & ~(a - 1)) macro