Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread_rwlock.cpp332 atomic_fetch_and_explicit(&rwlock->state, ~STATE_HAVE_PENDING_READERS_FLAG, in __pthread_rwlock_timedrdlock()
399 atomic_fetch_and_explicit(&rwlock->state, ~STATE_HAVE_PENDING_WRITERS_FLAG, in __pthread_rwlock_timedwrlock()
495 old_state = atomic_fetch_and_explicit(&rwlock->state, ~STATE_OWNED_BY_WRITER_FLAG, in pthread_rwlock_unlock()
/bionic/libc/include/bits/
Dstdatomic.h219 #define atomic_fetch_and_explicit(object, operand, order) \ macro
247 atomic_fetch_and_explicit(object, operand, memory_order_seq_cst)
/bionic/libc/include/
Dstdatomic.h78 using std::atomic_fetch_and_explicit;
/bionic/tests/
Dstdatomic_test.cpp178 ASSERT_EQ(0x003, atomic_fetch_and_explicit(&i, 0x2, memory_order_relaxed)); in TEST()