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)
15
CHECK_ALIGN
(struct, a2, 1)
20
CHECK_ALIGN
(struct, a3, 1)
25
CHECK_ALIGN
(struct, a4, 1)
29
CHECK_ALIGN
(union, b, 1)
34
CHECK_ALIGN
(struct, c, 1)
38
CHECK_ALIGN
(union, d, 1)
43
CHECK_ALIGN
(struct, e, 1)
48
CHECK_ALIGN
(struct, f, 8
[
all
...]
Completed in 4955 milliseconds