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/clang/lib/Headers/ |
D | stdatomic.h | 138 #define atomic_exchange_explicit __c11_atomic_exchange macro
|
/external/skia/include/private/ |
D | SkAtomics.h | 147 return std::atomic_exchange_explicit(ap, val, (std::memory_order)mo); in sk_atomic_exchange()
|
/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; 1200 // atomic_exchange_explicit 1205 atomic_exchange_explicit(volatile atomic<_Tp>* __o, _Tp __d, memory_order __m) _NOEXCEPT 1213 atomic_exchange_explicit(atomic<_Tp>* __o, _Tp __d, memory_order __m) _NOEXCEPT
|
D | memory | 562 atomic_exchange_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo); 5462 atomic_exchange_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order)
|
/external/clang/test/Sema/ |
D | atomic-ops.c | 228 k = atomic_exchange_explicit(&n, k, memory_order_release); in f()
|