Home
last modified time | relevance | path

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

/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_fetch_and.pass.cpp34 assert(std::atomic_fetch_and(&t, T(2)) == T(1)); in test()
41 assert(std::atomic_fetch_and(&t, T(2)) == T(3)); in test()
/external/clang/lib/Headers/
Dstdatomic.h158 #define atomic_fetch_and(object, operand) __c11_atomic_fetch_and(object, operand, __ATOMIC_SEQ_CST) macro
/external/libcxx/include/
Datomic396 atomic_fetch_and(volatile atomic<Integral>* obj, Integral op) noexcept;
400 atomic_fetch_and(atomic<Integral>* obj, Integral op) noexcept;
1467 // atomic_fetch_and
1476 atomic_fetch_and(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
1488 atomic_fetch_and(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
/external/clang/test/Sema/
Datomic-ops.c238 k = atomic_fetch_and(&n, k); in f()