blob: 6feb6d9238a95ed66eb27f037df6f794a51a2383 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* : : generated from contrib/ast/src/lib/libast/features/align.c by iffe version 2012-07-17 : : */
#ifndef _def_align_ast
#define _def_align_ast 1
#define _sys_types 1 /* #include <sys/types.h> ok */
#define ALIGN_CHUNK 8192
#define ALIGN_INTEGRAL uintptr_t
#define ALIGN_INTEGER(x) ((char*)(x)-(char*)0)
#define ALIGN_POINTER(x) ((char*)(x))
#define ALIGN_ROUND(x,y) ALIGN_POINTER(ALIGN_INTEGER((x)+(y)-1)&~((y)-1))
#define ALIGN_BOUND ALIGN_BOUND2
#define ALIGN_ALIGN(x) ALIGN_ALIGN2(x)
#define ALIGN_TRUNC(x) ALIGN_TRUNC2(x)
#define ALIGN_BIT1 0x1
#define ALIGN_BOUND1 ALIGN_BOUND2
#define ALIGN_ALIGN1(x) ALIGN_ALIGN2(x)
#define ALIGN_TRUNC1(x) ALIGN_TRUNC2(x)
#define ALIGN_CLRBIT1(x) ALIGN_POINTER(ALIGN_INTEGER(x)&0xfffffffe)
#define ALIGN_SETBIT1(x) ALIGN_POINTER(ALIGN_INTEGER(x)|0x1)
#define ALIGN_TSTBIT1(x) ALIGN_POINTER(ALIGN_INTEGER(x)&0x1)
#define ALIGN_BIT2 0x2
#define ALIGN_BOUND2 4
#define ALIGN_ALIGN2(x) ALIGN_TRUNC2((x)+3)
#define ALIGN_TRUNC2(x) ALIGN_POINTER(ALIGN_INTEGER(x)&0xfffffffc)
#define ALIGN_CLRBIT2(x) ALIGN_POINTER(ALIGN_INTEGER(x)&0xfffffffd)
#define ALIGN_SETBIT2(x) ALIGN_POINTER(ALIGN_INTEGER(x)|0x2)
#define ALIGN_TSTBIT2(x) ALIGN_POINTER(ALIGN_INTEGER(x)&0x2)
#endif
|