Searched refs:atomic_fetch_xor (Results 1 – 5 of 5) sorted by relevance
/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/ |
D | atomic_fetch_xor.pass.cpp | 35 assert(std::atomic_fetch_xor(&t, T(2)) == T(1)); in operator ()() 42 assert(std::atomic_fetch_xor(&t, T(2)) == T(3)); in operator ()()
|
/external/clang/lib/Headers/ |
D | stdatomic.h | 155 #define atomic_fetch_xor(object, operand) __c11_atomic_fetch_xor(object, operand, __ATOMIC_SEQ_CST) macro
|
D | opencl-c.h | 14795 int __ovld atomic_fetch_xor(volatile atomic_int *object, int operand); 14798 uint __ovld atomic_fetch_xor(volatile atomic_uint *object, uint operand); 14845 long __ovld atomic_fetch_xor(volatile atomic_long *object, long operand); 14848 ulong __ovld atomic_fetch_xor(volatile atomic_ulong *object, ulong operand); 14892 uintptr_t __ovld atomic_fetch_xor(volatile atomic_uintptr_t *object, intptr_t operand); 14908 intptr_t __ovld atomic_fetch_xor(volatile atomic_intptr_t *object, uintptr_t operand);
|
/external/libcxx/include/ |
D | atomic | 435 atomic_fetch_xor(volatile atomic<Integral>* obj, Integral op) noexcept; 439 atomic_fetch_xor(atomic<Integral>* obj, Integral op) noexcept; 1653 // atomic_fetch_xor 1662 atomic_fetch_xor(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT 1674 atomic_fetch_xor(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
|
/external/clang/test/Sema/ |
D | atomic-ops.c | 249 k = atomic_fetch_xor(&n, k); in f()
|