Home
last modified time | relevance | path

Searched refs:atomic_fetch_sub (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/bionic/
Dmalloc_limit.cpp129 atomic_fetch_sub(&gAllocated, LimitUsableSize(mem)); in LimitFree()
216 atomic_fetch_sub(&gAllocated, old_usable_size); in LimitRealloc()
223 atomic_fetch_sub(&gAllocated, old_usable_size - new_usable_size); in LimitRealloc()
/bionic/tests/
Dstdatomic_test.cpp157 TEST(stdatomic, atomic_fetch_sub) { in TEST() argument
159 ASSERT_EQ(123, atomic_fetch_sub(&i, 1)); in TEST()
/bionic/libc/include/
Dstdatomic.h71 using std::atomic_fetch_sub;
347 #define atomic_fetch_sub(object, operand) \ macro