Home
last modified time | relevance | path

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

/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_fetch_xor.pass.cpp34 assert(std::atomic_fetch_xor(&t, T(2)) == T(1)); in test()
41 assert(std::atomic_fetch_xor(&t, T(2)) == T(3)); in test()
/external/clang/lib/Headers/
Dstdatomic.h155 #define atomic_fetch_xor(object, operand) __c11_atomic_fetch_xor(object, operand, __ATOMIC_SEQ_CST) macro
/external/libcxx/include/
Datomic428 atomic_fetch_xor(volatile atomic<Integral>* obj, Integral op) noexcept;
432 atomic_fetch_xor(atomic<Integral>* obj, Integral op) noexcept;
1571 // atomic_fetch_xor
1580 atomic_fetch_xor(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
1592 atomic_fetch_xor(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
/external/clang/test/Sema/
Datomic-ops.c240 k = atomic_fetch_xor(&n, k); in f()