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/ |
D | atomic_fetch_and.pass.cpp | 34 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/ |
D | stdatomic.h | 158 #define atomic_fetch_and(object, operand) __c11_atomic_fetch_and(object, operand, __ATOMIC_SEQ_CST) macro
|
/external/libcxx/include/ |
D | atomic | 396 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/ |
D | atomic-ops.c | 238 k = atomic_fetch_and(&n, k); in f()
|