Home
last modified time | relevance | path

Searched refs:atomic_fetch_and (Results 1 – 5 of 5) sorted by relevance

/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_fetch_and.pass.cpp35 assert(std::atomic_fetch_and(&t, T(2)) == T(1)); in operator ()()
42 assert(std::atomic_fetch_and(&t, T(2)) == T(3)); in operator ()()
/external/clang/lib/Headers/
Dstdatomic.h158 #define atomic_fetch_and(object, operand) __c11_atomic_fetch_and(object, operand, __ATOMIC_SEQ_CST) macro
Dopencl-c.h14801 int __ovld atomic_fetch_and(volatile atomic_int *object, int operand);
14804 uint __ovld atomic_fetch_and(volatile atomic_uint *object, uint operand);
14851 long __ovld atomic_fetch_and(volatile atomic_long *object, long operand);
14854 ulong __ovld atomic_fetch_and(volatile atomic_ulong *object, ulong operand);
14895 uintptr_t __ovld atomic_fetch_and(volatile atomic_uintptr_t *object, intptr_t operand);
14911 intptr_t __ovld atomic_fetch_and(volatile atomic_intptr_t *object, uintptr_t operand);
/external/libcxx/include/
Datomic403 atomic_fetch_and(volatile atomic<Integral>* obj, Integral op) noexcept;
407 atomic_fetch_and(atomic<Integral>* obj, Integral op) noexcept;
1549 // atomic_fetch_and
1558 atomic_fetch_and(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
1570 atomic_fetch_and(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
/external/clang/test/Sema/
Datomic-ops.c247 k = atomic_fetch_and(&n, k); in f()