Home
last modified time | relevance | path

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

/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_fetch_xor.pass.cpp35 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/OpenCL-CTS/test_conformance/clcpp/atomics/
Datomic_fetch.hpp241 DEF_ATOMIC_FETCH_FUNC(atomic_fetch_xor, fetch_xor, x ^ y, 0)
282 TEST_ATOMIC_MACRO((atomic_fetch_xor<cl_int>())) in AUTO_TEST_CASE()
283 TEST_ATOMIC_MACRO((atomic_fetch_xor<cl_uint>())) in AUTO_TEST_CASE()
284 TEST_ATOMIC_MACRO((atomic_fetch_xor<cl_long>())) in AUTO_TEST_CASE()
285 TEST_ATOMIC_MACRO((atomic_fetch_xor<cl_ulong>())) in AUTO_TEST_CASE()
/external/clang/lib/Headers/
Dstdatomic.h155 #define atomic_fetch_xor(object, operand) __c11_atomic_fetch_xor(object, operand, __ATOMIC_SEQ_CST) macro
Dopencl-c.h14795 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/OpenCL-CTS/test_conformance/c11_atomics/
Dmain.cpp80 ADD_TEST( atomic_fetch_xor ),
/external/elfutils/lib/
Dstdatomic-fbsd.h390 #define atomic_fetch_xor(object, operand) \ macro
/external/libcxx/include/
Datomic435 atomic_fetch_xor(volatile atomic<Integral>* obj, Integral op) noexcept;
439 atomic_fetch_xor(atomic<Integral>* obj, Integral op) noexcept;
1666 // atomic_fetch_xor
1675 atomic_fetch_xor(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
1687 atomic_fetch_xor(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
/external/clang/test/Sema/
Datomic-ops.c249 k = atomic_fetch_xor(&n, k); in f()
/external/v8/src/codegen/
Dexternal-reference.cc906 return std::atomic_fetch_xor(reinterpret_cast<std::atomic<int64_t>*>(address), in atomic_pair_xor()