OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CHECK_ALIGN
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/SemaCXX/
bitfield-layout.cpp
4
#define
CHECK_ALIGN
(name, size) extern int name##2[__alignof(name) == size ? 1 : -1];
11
CHECK_ALIGN
(Test1, 1);
17
CHECK_ALIGN
(Test2, 2);
23
CHECK_ALIGN
(Test3, 4);
29
CHECK_ALIGN
(Test4, 8);
/external/clang/test/Sema/
bitfield-layout.c
5
#define
CHECK_ALIGN
(kind, name, size) extern int name##2[__alignof(kind name) == size ? 1 : -1];
10
CHECK_ALIGN
(struct, a, 1)
14
CHECK_ALIGN
(union, b, 1)
19
CHECK_ALIGN
(struct, c, 1)
23
CHECK_ALIGN
(union, d, 1)
28
CHECK_ALIGN
(struct, e, 1)
33
CHECK_ALIGN
(struct, f, 8)
42
CHECK_ALIGN
(struct, s0, 4)
Completed in 264 milliseconds