Home
last modified time | relevance | path

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

/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_fetch_xor_explicit.pass.cpp34 assert(std::atomic_fetch_xor_explicit(&t, T(2), in test()
42 assert(std::atomic_fetch_xor_explicit(&t, T(2), in test()
/external/clang/lib/Headers/
Dstdatomic.h156 #define atomic_fetch_xor_explicit __c11_atomic_fetch_xor macro
/external/libcxx/include/
Datomic436 atomic_fetch_xor_explicit(volatile atomic<Integral>* obj, Integral op,
440 atomic_fetch_xor_explicit(atomic<Integral>* obj, Integral op,
1597 // atomic_fetch_xor_explicit
1606 atomic_fetch_xor_explicit(volatile atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
1618 atomic_fetch_xor_explicit(atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
/external/clang/test/Sema/
Datomic-ops.c245 k = atomic_fetch_xor_explicit(&n, k, memory_order_relaxed); in f()