Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:_Atomic

23     _Atomic(struct ptr) link;
36 _Atomic(_Bool) b;
37 _Atomic(int) i;
38 _Atomic(long long) l;
39 _Atomic(short) s;
40 _Atomic(char*) p;
41 _Atomic(float) f;
42 _Atomic(vector) v;
158 void testFloat(_Atomic(float) *fp) {
171 _Atomic(float) x = 2.0f;
193 void testComplexFloat(_Atomic(_Complex float) *fp) {
212 _Atomic(_Complex float) x = 2.0f;
246 _Atomic S testStructGlobal = (S){1, 2, 3, 4};
248 void testStruct(_Atomic(S) *fp) {
274 _Atomic(S) x = (S){1,2,3,4};
295 _Atomic PS testPromotedStructGlobal = (PS){1, 2, 3};
297 void testPromotedStruct(_Atomic(PS) *fp) {
329 _Atomic(PS) x = (PS){1,2,3};
370 PS test_promoted_load(_Atomic(PS) *addr) {
389 void test_promoted_store(_Atomic(PS) *addr, PS *val) {
413 PS test_promoted_exchange(_Atomic(PS) *addr, PS *val) {
444 _Bool test_promoted_cmpxchg(_Atomic(PS) *addr, PS *desired, PS *new) {