ALIGN
#define ALIGN(p) _ALIGN(p)
#define ALIGN(p) _ALIGN(p)
#define ALIGN(ptr) (ptr)
#define ALIGN(ptr) (ptr)
#undef ALIGN
#define ALIGN(value, bound) (((value) + (bound) - 1) & ~((bound) - 1))
#define ALIGN(elf) ((elf->ed_class == ELFCLASS32) ? align32 : align64)
#define ALIGN(x, a) ((int)(x) & ~((int)(a) - 1))
#define ALIGN(p) (((unsigned long)(p) + ALIGNBYTES) & ~ALIGNBYTES)
#define ALIGN 8
#define ALIGN 16
#define ALIGN 8
#define ALIGN(x) ((((long)(x)) + sizeof (long) - 1) & ~(sizeof (long) - 1))
#define ALIGN 16
#define ALIGN 8
#define ALIGN(x, a) ((uintptr_t)(x) & ~((a) - 1))
#define ALIGN(x, a) ((((uintptr_t)(x) + ((uintptr_t)(a) - 1)) \
#define ALIGN(x) ((((long)(x)) + sizeof (long) - 1) & ~(sizeof (long) - 1))
#define ALIGN(p) (((uintptr_t)(p) + (sizeof(long) - 1)) & ~(sizeof(long) - 1))
#undef ALIGN
#define ALIGN(x) (((uintptr_t)(x) + (sizeof (char *) - 1UL)) & \
#define ALIGN(x) (((unsigned long)(x) + (sizeof (char *) - 1UL)) & \
#define ALIGN 16
#define ALIGN 8
#define ALIGN 8 /* doubleword aligned .. */
#define ALIGN(x, a) \
#define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
#define ALIGN(x, a) ((a) == 0 ? (uintptr_t)(x) : \
#define ALIGN(x, a) ((a) == 0 ? (uintptr_t)(x) : \
#define ALIGN(x, a) ((a) == 0 ? (uint64_t)(x) : \
#define ALIGN(x, a) ((a) == 0 ? (uint64_t)(x) : \