/external/cronet/stable/third_party/libc++/src/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 operator ()() 37 ASSERT_NOEXCEPT(std::atomic_fetch_xor(&t, T(2))); in operator ()() 42 assert(std::atomic_fetch_xor(&t, T(2)) == T(3)); in operator ()() 45 ASSERT_NOEXCEPT(std::atomic_fetch_xor(&t, T(2))); in operator ()()
|
/external/cronet/tot/third_party/libc++/src/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 operator ()() 37 ASSERT_NOEXCEPT(std::atomic_fetch_xor(&t, T(2))); in operator ()() 42 assert(std::atomic_fetch_xor(&t, T(2)) == T(3)); in operator ()() 45 ASSERT_NOEXCEPT(std::atomic_fetch_xor(&t, T(2))); in operator ()()
|
/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
|
/external/cronet/stable/third_party/libc++/src/include/ |
D | stdatomic.h | 214 using std::atomic_fetch_xor _LIBCPP_USING_IF_EXISTS;
|
D | atomic | 435 T atomic_fetch_xor(volatile atomic<T>*, atomic<T>::value_type) noexcept; 437 T atomic_fetch_xor(atomic<T>*, atomic<T>::value_type) noexcept;
|
/external/cronet/tot/third_party/libc++/src/include/ |
D | stdatomic.h | 214 using std::atomic_fetch_xor _LIBCPP_USING_IF_EXISTS;
|
D | atomic | 435 T atomic_fetch_xor(volatile atomic<T>*, atomic<T>::value_type) noexcept; 437 T atomic_fetch_xor(atomic<T>*, atomic<T>::value_type) noexcept;
|
/external/cronet/tot/third_party/libc++/src/test/std/atomics/stdatomic.h.syn/ |
D | types.compile.pass.cpp | 229 using ::atomic_fetch_xor; in f()
|
/external/cronet/stable/third_party/libc++/src/test/std/atomics/stdatomic.h.syn/ |
D | types.compile.pass.cpp | 229 using ::atomic_fetch_xor; in f()
|
/external/cronet/tot/third_party/libc++/src/modules/std/ |
D | atomic.inc | 51 using std::atomic_fetch_xor _LIBCPP_USING_IF_EXISTS;
|
/external/cronet/stable/third_party/libc++/src/modules/std/ |
D | atomic.inc | 51 using std::atomic_fetch_xor _LIBCPP_USING_IF_EXISTS;
|
/external/OpenCL-CTS/test_conformance/c11_atomics/ |
D | main.cpp | 82 ADD_TEST( atomic_fetch_xor ),
|
/external/elfutils/lib/ |
D | stdatomic-fbsd.h | 390 #define atomic_fetch_xor(object, operand) \ macro
|
/external/cronet/tot/third_party/libc++/src/include/__cxx03/__atomic/ |
D | atomic.h | 597 _LIBCPP_HIDE_FROM_ABI _Tp atomic_fetch_xor(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_t… 602 _LIBCPP_HIDE_FROM_ABI _Tp atomic_fetch_xor(atomic<_Tp>* __o, typename atomic<_Tp>::value_type __op)…
|
/external/cronet/stable/third_party/libc++/src/include/__cxx03/__atomic/ |
D | atomic.h | 597 _LIBCPP_HIDE_FROM_ABI _Tp atomic_fetch_xor(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_t… 602 _LIBCPP_HIDE_FROM_ABI _Tp atomic_fetch_xor(atomic<_Tp>* __o, typename atomic<_Tp>::value_type __op)…
|
/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; 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/cronet/stable/third_party/libc++/src/include/__atomic/ |
D | atomic.h | 795 _LIBCPP_HIDE_FROM_ABI _Tp atomic_fetch_xor(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_t… 800 _LIBCPP_HIDE_FROM_ABI _Tp atomic_fetch_xor(atomic<_Tp>* __o, typename atomic<_Tp>::value_type __op)…
|
/external/cronet/tot/third_party/libc++/src/include/__atomic/ |
D | atomic.h | 795 _LIBCPP_HIDE_FROM_ABI _Tp atomic_fetch_xor(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_t… 800 _LIBCPP_HIDE_FROM_ABI _Tp atomic_fetch_xor(atomic<_Tp>* __o, typename atomic<_Tp>::value_type __op)…
|
/external/cronet/tot/third_party/libc++/src/include/__cxx03/ |
D | atomic | 435 T atomic_fetch_xor(volatile atomic<T>*, atomic<T>::value_type) noexcept; 437 T atomic_fetch_xor(atomic<T>*, atomic<T>::value_type) noexcept;
|
/external/cronet/stable/third_party/libc++/src/include/__cxx03/ |
D | atomic | 435 T atomic_fetch_xor(volatile atomic<T>*, atomic<T>::value_type) noexcept; 437 T atomic_fetch_xor(atomic<T>*, atomic<T>::value_type) noexcept;
|
/external/clang/test/Sema/ |
D | atomic-ops.c | 249 k = atomic_fetch_xor(&n, k); in f()
|
/external/emboss/compiler/front_end/ |
D | reserved_words | 319 atomic_fetch_xor
|
/external/emboss/doc/ |
D | grammar.md | 445 `atomic_fetch_sub_explicit` `atomic_fetch_xor` `atomic_fetch_xor_explicit`
|
/external/cronet/stable/third_party/libc++/src/docs/Status/ |
D | Cxx23Issues.csv | 167 "`LWG3671 <https://wg21.link/LWG3671>`__","``atomic_fetch_xor`` missing from ``stdatomic.h``","2022…
|