OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__c11_atomic_store
(Results
1 - 8
of
8
) sorted by null
/external/compiler-rt/lib/tsan/lit_tests/
malloc_stack.cc
17
__c11_atomic_store
(&p, new int, __ATOMIC_RELAXED);
static_init3.cc
22
__c11_atomic_store
(&queue, c, 0);
/external/clang/test/Sema/
atomic-requires-library-error.c
17
__c11_atomic_store
(&bigAtomic, f, 5); // expected-error {{atomic store requires runtime support that is not available for this target}}
atomic-ops.c
89
__c11_atomic_store
(0,0,0); // expected-error {{address argument to atomic builtin must be a pointer}}
90
__c11_atomic_store
((int*)0,0,0); // expected-error {{address argument to atomic operation must be a pointer to _Atomic}}
108
__c11_atomic_store
(i, 1, memory_order_seq_cst);
109
__c11_atomic_store
(p, 1, memory_order_seq_cst); // expected-warning {{incompatible integer to pointer conversion}}
110
(int)
__c11_atomic_store
(d, 1, memory_order_seq_cst); // expected-error {{operand of type 'void'}}
173
__c11_atomic_store
(&const_atomic, 0, memory_order_release); // expected-error {{address argument to atomic operation must be a pointer to non-const _Atomic type ('const _Atomic(int) *' invalid)}}
member in struct:s2
/external/clang/test/CodeGen/
atomic-ops.c
40
__c11_atomic_store
(i, 1, memory_order_seq_cst);
123
__c11_atomic_store
(d, 1, memory_order_release);
311
__c11_atomic_store
(i, 1, memory_order_consume);
312
__c11_atomic_store
(i, 1, memory_order_acquire);
313
__c11_atomic_store
(i, 1, memory_order_acq_rel);
c11atomics-ios.c
207
__c11_atomic_store
(p, a, 5);
c11atomics.c
355
__c11_atomic_store
(p, a, 5);
/external/compiler-rt/lib/
atomic.c
66
__c11_atomic_store
((_Atomic(uint32_t)*)&l->_count, 1, __ATOMIC_RELEASE);
99
__c11_atomic_store
(l, 0, __ATOMIC_RELEASE);
184
__c11_atomic_store
((_Atomic(type)*)dest, *(type*)dest, model);\
262
__c11_atomic_store
((_Atomic(type)*)dest, val, model);\
Completed in 2596 milliseconds