HomeSort by relevance Sort by last modified time
    Searched defs:TYPE_ALIGNMENT (Results 1 - 2 of 2) 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))
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 112 milliseconds