Searched refs:atomic_exchange_explicit (Results 1 – 10 of 10) sorted by relevance
/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ |
D | atomic_exchange_explicit.pass.cpp | 35 assert(std::atomic_exchange_explicit(&t, T(2), std::memory_order_seq_cst) in operator ()() 40 assert(std::atomic_exchange_explicit(&vt, T(4), std::memory_order_seq_cst) in operator ()()
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/ |
D | atomic_exchange_explicit.pass.cpp | 37 r = std::atomic_exchange_explicit(&p, r, std::memory_order_seq_cst); in main()
|
/external/v8/src/base/ |
D | atomicops_internals_std.h | 41 return std::atomic_exchange_explicit(helper::to_std_atomic(ptr), new_value, in Relaxed_AtomicExchange() 126 return std::atomic_exchange_explicit(helper::to_std_atomic(ptr), new_value, in Relaxed_AtomicExchange()
|
/external/libcxx/src/experimental/ |
D | memory_resource.cpp | 112 return _VSTD::atomic_exchange_explicit( in __default_memory_resource()
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | atomic_c11.h | 43 return atomic_exchange_explicit(a, val, mo); \
|
/external/clang/lib/Headers/ |
D | stdatomic.h | 138 #define atomic_exchange_explicit __c11_atomic_exchange macro
|
D | opencl-c.h | 14975 int __ovld atomic_exchange_explicit(volatile atomic_int *object, int desired, memory_order order); 14976 int __ovld atomic_exchange_explicit(volatile atomic_int *object, int desired, memory_order order, m… 14978 uint __ovld atomic_exchange_explicit(volatile atomic_uint *object, uint desired, memory_order order… 14979 uint __ovld atomic_exchange_explicit(volatile atomic_uint *object, uint desired, memory_order order… 14981 float __ovld atomic_exchange_explicit(volatile atomic_float *object, float desired, memory_order or… 14982 float __ovld atomic_exchange_explicit(volatile atomic_float *object, float desired, memory_order or… 14986 double __ovld atomic_exchange_explicit(volatile atomic_double *object, double desired, memory_order… 14987 double __ovld atomic_exchange_explicit(volatile atomic_double *object, double desired, memory_order… 14990 long __ovld atomic_exchange_explicit(volatile atomic_long *object, long desired, memory_order order… 14991 long __ovld atomic_exchange_explicit(volatile atomic_long *object, long desired, memory_order order… [all …]
|
/external/libcxx/include/ |
D | atomic | 324 atomic_exchange_explicit(volatile atomic<T>* obj, T desr, memory_order m) noexcept; 328 atomic_exchange_explicit(atomic<T>* obj, T desr, memory_order m) noexcept; 1291 // atomic_exchange_explicit 1296 atomic_exchange_explicit(volatile atomic<_Tp>* __o, _Tp __d, memory_order __m) _NOEXCEPT 1304 atomic_exchange_explicit(atomic<_Tp>* __o, _Tp __d, memory_order __m) _NOEXCEPT
|
D | memory | 613 atomic_exchange_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo); 5481 atomic_exchange_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order)
|
/external/clang/test/Sema/ |
D | atomic-ops.c | 237 k = atomic_exchange_explicit(&n, k, memory_order_release); in f()
|