Home
last modified time | relevance | path

Searched refs:atomic_fetch_or_explicit (Results 1 – 4 of 4) sorted by relevance

/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_fetch_or_explicit.pass.cpp34 assert(std::atomic_fetch_or_explicit(&t, T(2), in test()
42 assert(std::atomic_fetch_or_explicit(&t, T(2), in test()
/external/clang/lib/Headers/
Dstdatomic.h153 #define atomic_fetch_or_explicit __c11_atomic_fetch_or macro
/external/libcxx/include/
Datomic420 atomic_fetch_or_explicit(volatile atomic<Integral>* obj, Integral op,
424 atomic_fetch_or_explicit(atomic<Integral>* obj, Integral op,
1545 // atomic_fetch_or_explicit
1554 atomic_fetch_or_explicit(volatile atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
1566 atomic_fetch_or_explicit(atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
/external/clang/test/Sema/
Datomic-ops.c244 k = atomic_fetch_or_explicit(&n, k, memory_order_consume); in f()