Lines Matching defs:_Atomic
17 _Atomic(_Bool) b;
18 _Atomic(int) i;
19 _Atomic(long long) l;
20 _Atomic(short) s;
21 _Atomic(char*) p;
22 _Atomic(float) f;
23 _Atomic(vector) v;
139 void testFloat(_Atomic(float) *fp) {
152 _Atomic(float) x = 2.0f;
174 void testComplexFloat(_Atomic(_Complex float) *fp) {
193 _Atomic(_Complex float) x = 2.0f;
228 void testStruct(_Atomic(S) *fp) {
258 _Atomic(S) x = (S){1,2,3,4};
280 void testPromotedStruct(_Atomic(PS) *fp) {
309 _Atomic(PS) x = (PS){1,2,3};
338 void testPromotedStructOps(_Atomic(PS) *p) {