HomeSort by relevance Sort by last modified time
    Searched refs:TYPE_ALIGNMENT (Results 1 - 4 of 4) sorted by null

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntdef.h 167 #define TYPE_ALIGNMENT(t) __alignof(t)
169 #define TYPE_ALIGNMENT(t) FIELD_OFFSET(struct { char x; t test; }, test)
173 #define PROBE_ALIGNMENT(v) TYPE_ALIGNMENT(ULONG)
175 #define PROBE_ALIGNMENT(v) (TYPE_ALIGNMENT(v) > TYPE_ALIGNMENT(ULONG) ? TYPE_ALIGNMENT(v) : TYPE_ALIGNMENT(ULONG))
mswsock.h 176 #define WSA_CMSGHDR_ALIGN(length) (((length) + TYPE_ALIGNMENT(WSACMSGHDR)-1) & (~(TYPE_ALIGNMENT(WSACMSGHDR)-1)))
stralign.h 177 #define __UA_STRUC_ALIGNED(t,s) (((DWORD_PTR)(s) & (TYPE_ALIGNMENT(t)-1))==0)
winnt.h 120 #define TYPE_ALIGNMENT(t) __alignof__ (t)
122 #define TYPE_ALIGNMENT(t) FIELD_OFFSET(struct { char x; t test; }, test)
126 #define PROBE_ALIGNMENT(_s) TYPE_ALIGNMENT (DWORD)
128 #define PROBE_ALIGNMENT(_s) (TYPE_ALIGNMENT (_s) > TYPE_ALIGNMENT (DWORD) ? TYPE_ALIGNMENT (_s) : TYPE_ALIGNMENT (DWORD))
134 #define PROBE_ALIGNMENT32(_s) TYPE_ALIGNMENT (DWORD)
    [all...]

Completed in 373 milliseconds