Searched refs:atomic_exchange_explicit (Results 1 – 7 of 7) sorted by relevance
/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ |
D | atomic_exchange_explicit.pass.cpp | 34 assert(std::atomic_exchange_explicit(&t, T(2), std::memory_order_seq_cst) in test() 39 assert(std::atomic_exchange_explicit(&vt, T(4), std::memory_order_seq_cst) in test()
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/ |
D | atomic_exchange_explicit.pass.cpp | 34 r = std::atomic_exchange_explicit(&p, r, std::memory_order_seq_cst); in main()
|
/external/skia/include/ports/ |
D | SkAtomics_std.h | 61 return std::atomic_exchange_explicit(ap, val, (std::memory_order)mo); in sk_atomic_exchange()
|
/external/clang/lib/Headers/ |
D | stdatomic.h | 138 #define atomic_exchange_explicit __c11_atomic_exchange macro
|
/external/libcxx/include/ |
D | atomic | 317 atomic_exchange_explicit(volatile atomic<T>* obj, T desr, memory_order m) noexcept; 321 atomic_exchange_explicit(atomic<T>* obj, T desr, memory_order m) noexcept; 1197 // atomic_exchange_explicit 1202 atomic_exchange_explicit(volatile atomic<_Tp>* __o, _Tp __d, memory_order __m) _NOEXCEPT 1210 atomic_exchange_explicit(atomic<_Tp>* __o, _Tp __d, memory_order __m) _NOEXCEPT
|
D | memory | 560 atomic_exchange_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo); 5358 atomic_exchange_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order)
|
/external/clang/test/Sema/ |
D | atomic-ops.c | 203 k = atomic_exchange_explicit(&n, k, memory_order_release); in f()
|