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 159 #define TYPE_ALIGNMENT(t) __alignof(t)
161 #define TYPE_ALIGNMENT(t) FIELD_OFFSET(struct { char x; t test; }, test)
165 #define PROBE_ALIGNMENT(v) TYPE_ALIGNMENT(ULONG)
167 #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 172 #define __UA_STRUC_ALIGNED(t,s) (((DWORD_PTR)(s) & (TYPE_ALIGNMENT(t)-1))==0)
winnt.h 65 #define TYPE_ALIGNMENT(t) __alignof__ (t)
67 #define TYPE_ALIGNMENT(t) FIELD_OFFSET(struct { char x; t test; }, test)
72 #define PROBE_ALIGNMENT(_s) TYPE_ALIGNMENT(DWORD)
74 #define PROBE_ALIGNMENT(_s) (TYPE_ALIGNMENT(_s) > TYPE_ALIGNMENT(DWORD) ? TYPE_ALIGNMENT(_s) : TYPE_ALIGNMENT(DWORD))
78 #define PROBE_ALIGNMENT32(_s) TYPE_ALIGNMENT(DWORD)
80 #define PROBE_ALIGNMENT(_s) TYPE_ALIGNMENT(DWORD)
    [all...]

Completed in 71 milliseconds