Home
last modified time | relevance | path

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

/bionic/libc/include/
Dstdatomic.h83 using std::atomic_fetch_add_explicit;
413 #define atomic_fetch_add_explicit(object, operand, order) \ macro
438 #define atomic_fetch_add_explicit(object, operand, order) \ macro
486 #define atomic_fetch_add_explicit(object, operand, order) \ macro
521 atomic_fetch_add_explicit(object, operand, memory_order_seq_cst)
/bionic/libc/bionic/
Dpthread_cond.cpp167 atomic_fetch_add_explicit(&cond->state, COND_COUNTER_STEP, memory_order_relaxed); in __pthread_cond_pulse()
Dpthread_mutex.cpp391 atomic_fetch_add_explicit(&mutex->state, MUTEX_COUNTER_BITS_ONE, memory_order_relaxed); in __recursive_increment()
/bionic/tests/
Dstdatomic_test.cpp142 ASSERT_EQ(124, atomic_fetch_add_explicit(&i, 1, memory_order_relaxed)); in TEST()