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/ |
D | atomic_fetch_xor.pass.cpp | 34 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/ |
D | stdatomic.h | 155 #define atomic_fetch_xor(object, operand) __c11_atomic_fetch_xor(object, operand, __ATOMIC_SEQ_CST) macro
|
/external/libcxx/include/ |
D | atomic | 428 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/ |
D | atomic-ops.c | 240 k = atomic_fetch_xor(&n, k); in f()
|