Home
last modified time | relevance | path

Searched refs:atomic_fetch_sub_explicit (Results 1 – 13 of 13) sorted by relevance

/aosp12/bionic/libc/include/bits/
H A Dstdatomic.h223 #define atomic_fetch_sub_explicit(object, operand, order) \ macro
251 atomic_fetch_sub_explicit(object, operand, memory_order_seq_cst)
/aosp12/hardware/qcom/sm7150/gps/utils/
H A DLocSharedLock.h50 return std::atomic_fetch_sub_explicit(a, 1, std::memory_order_release); in android_atomic_dec()
/aosp12/hardware/qcom/sm8150p/gps/utils/
H A DLocSharedLock.h50 return std::atomic_fetch_sub_explicit(a, 1, std::memory_order_release); in android_atomic_dec()
/aosp12/hardware/qcom/sm7250/gps/utils/
H A DLocSharedLock.h50 return std::atomic_fetch_sub_explicit(a, 1, std::memory_order_release); in android_atomic_dec()
/aosp12/hardware/qcom/sm8150/gps/utils/
H A DLocSharedLock.h50 return std::atomic_fetch_sub_explicit(a, 1, std::memory_order_release); in android_atomic_dec()
/aosp12/bionic/libc/bionic/
H A Dpthread_barrier.cpp159 if (atomic_fetch_sub_explicit(&barrier->wait_count, 1, memory_order_release) == 1) { in pthread_barrier_wait()
H A Dpthread_cond.cpp202 atomic_fetch_sub_explicit(&cond->waiters, 1, memory_order_relaxed); in __pthread_cond_timedwait()
H A Dpthread_rwlock.cpp502 old_state = atomic_fetch_sub_explicit(&rwlock->state, STATE_READER_COUNT_CHANGE_STEP, in pthread_rwlock_unlock()
H A Dpthread_mutex.cpp880 atomic_fetch_sub_explicit(&mutex->state, MUTEX_COUNTER_BITS_ONE, memory_order_relaxed); in pthread_mutex_unlock()
/aosp12/system/core/libcutils/include/cutils/
H A Datomic.h102 return atomic_fetch_sub_explicit(a, 1, memory_order_release); in android_atomic_dec()
/aosp12/system/core/libcutils/include_outside_system/cutils/
H A Datomic.h102 return atomic_fetch_sub_explicit(a, 1, memory_order_release); in android_atomic_dec()
/aosp12/bionic/libc/include/
H A Dstdatomic.h72 using std::atomic_fetch_sub_explicit;
/aosp12/bionic/tests/
H A Dstdatomic_test.cpp157 ASSERT_EQ(122, atomic_fetch_sub_explicit(&i, 1, memory_order_relaxed)); in TEST()