Searched refs:atomic_fetch_sub (Results 1 – 4 of 4) sorted by relevance
129 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()
154 TEST(stdatomic, atomic_fetch_sub) { in TEST() argument156 ASSERT_EQ(123, atomic_fetch_sub(&i, 1)); in TEST()
71 using std::atomic_fetch_sub;
250 #define atomic_fetch_sub(object, operand) \ macro