Home
last modified time | relevance | path

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/
Datomic_exchange_explicit.pass.cpp35 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/
Datomic_exchange_explicit.pass.cpp37 r = std::atomic_exchange_explicit(&p, r, std::memory_order_seq_cst); in main()
/external/v8/src/base/
Datomicops_internals_std.h41 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/
Dmemory_resource.cpp112 return _VSTD::atomic_exchange_explicit( in __default_memory_resource()
/external/jemalloc_new/include/jemalloc/internal/
Datomic_c11.h43 return atomic_exchange_explicit(a, val, mo); \
/external/clang/lib/Headers/
Dstdatomic.h138 #define atomic_exchange_explicit __c11_atomic_exchange macro
Dopencl-c.h14975 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/
Datomic324 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
Dmemory613 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/
Datomic-ops.c237 k = atomic_exchange_explicit(&n, k, memory_order_release); in f()