Lines Matching full:extern

14 extern int a1[sizeof(struct s) == 12 ? 1 : -1];
15 extern int a2[__alignof(struct s) == 4 ? 1 : -1];
24 extern int b1[sizeof(struct packed_s) == 10 ? 1 : -1];
25 extern int b2[__alignof(struct packed_s) == 1 ? 1 : -1];
32 extern int c1[sizeof(struct fas) == 4 ? 1 : -1];
33 extern int c2[__alignof(struct fas) == 4 ? 1 : -1];
40 extern int d1[sizeof(struct packed_fas) == 1 ? 1 : -1];
41 extern int d2[__alignof(struct packed_fas) == 1 ? 1 : -1];
48 extern int d1_2[sizeof(struct packed_after_fas) == 1 ? 1 : -1];
49 extern int d2_2[__alignof(struct packed_after_fas) == 1 ? 1 : -1];
57 extern int e1[sizeof(struct as1) == 8 ? 1 : -1];
58 extern int e2[__alignof(struct as1) == 8 ? 1 : -1];
64 extern int e1_2[sizeof(struct as1_2) == 8 ? 1 : -1];
65 extern int e2_2[__alignof(struct as1_2) == 8 ? 1 : -1];
67 extern int e1_2[sizeof(struct as1_2) == 16 ? 1 : -1];
68 extern int e2_2[__alignof(struct as1_2) == 16 ? 1 : -1];
76 extern int f1[sizeof(struct as2) == 16 ? 1 : -1];
77 extern int f2[__alignof(struct as2) == 8 ? 1 : -1];
85 extern int g1[sizeof(struct as3) == 16 ? 1 : -1];
86 extern int g2[__alignof(struct as3) == 8 ? 1 : -1];
96 extern int h1[sizeof(union au4) == 4 ? 1 : -1];
97 extern int h2[__alignof(union au4) == 1 ? 1 : -1];
101 extern int h1[sizeof(union au5) == 4 ? 1 : -1];
102 extern int h2[__alignof(union au5) == 4 ? 1 : -1];
106 extern int i1[sizeof(struct as6) == 6 ? 1 : -1];
107 extern int i2[__alignof(struct as6) == 2 ? 1 : -1];
110 extern int k1[sizeof(union au6) == 4 ? 1 : -1];
111 extern int k2[__alignof(union au6) == 2 ? 1 : -1];
115 extern int l1[sizeof(union au7) == 4 ? 1 : -1];
116 extern int l2[__alignof(union au7) == 1 ? 1 : -1];
123 extern int m1[sizeof(struct packed_fas2) == 1 ? 1 : -1];
124 extern int m2[__alignof(struct packed_fas2) == 1 ? 1 : -1];
136 extern int n1[sizeof(struct nS) == 16 ? 1 : -1];
137 extern int n2[__alignof(struct nS) == 8 ? 1 : -1];
139 extern int n1[sizeof(struct nS) == 9 ? 1 : -1];
140 extern int n2[__alignof(struct nS) == 1 ? 1 : -1];
167 extern int o1[sizeof(struct packed_chars) == 9 ? 1 : -1];
168 extern int o2[__alignof(struct packed_chars) == 1 ? 1 : -1];
171 extern int o1[sizeof(struct packed_chars) == 8 ? 1 : -1];
172 extern int o2[__alignof(struct packed_chars) == 4 ? 1 : -1];
174 extern int o1[sizeof(struct packed_chars) == 8 ? 1 : -1];
175 extern int o2[__alignof(struct packed_chars) == 1 ? 1 : -1];