Lines Matching refs:new_value
187 Atomic32 new_value) { in NoBarrier_CompareAndSwap() argument
189 __tsan_atomic32_compare_exchange_strong(ptr, &cmp, new_value, in NoBarrier_CompareAndSwap()
195 Atomic32 new_value) { in NoBarrier_AtomicExchange() argument
196 return __tsan_atomic32_exchange(ptr, new_value, in NoBarrier_AtomicExchange()
201 Atomic32 new_value) { in Acquire_AtomicExchange() argument
202 return __tsan_atomic32_exchange(ptr, new_value, in Acquire_AtomicExchange()
207 Atomic32 new_value) { in Release_AtomicExchange() argument
208 return __tsan_atomic32_exchange(ptr, new_value, in Release_AtomicExchange()
226 Atomic32 new_value) { in Acquire_CompareAndSwap() argument
228 __tsan_atomic32_compare_exchange_strong(ptr, &cmp, new_value, in Acquire_CompareAndSwap()
235 Atomic32 new_value) { in Release_CompareAndSwap() argument
237 __tsan_atomic32_compare_exchange_strong(ptr, &cmp, new_value, in Release_CompareAndSwap()
278 Atomic64 new_value) { in NoBarrier_CompareAndSwap() argument
280 __tsan_atomic64_compare_exchange_strong(ptr, &cmp, new_value, in NoBarrier_CompareAndSwap()
286 Atomic64 new_value) { in NoBarrier_AtomicExchange() argument
287 return __tsan_atomic64_exchange(ptr, new_value, __tsan_memory_order_relaxed); in NoBarrier_AtomicExchange()
291 Atomic64 new_value) { in Acquire_AtomicExchange() argument
292 return __tsan_atomic64_exchange(ptr, new_value, __tsan_memory_order_acquire); in Acquire_AtomicExchange()
296 Atomic64 new_value) { in Release_AtomicExchange() argument
297 return __tsan_atomic64_exchange(ptr, new_value, __tsan_memory_order_release); in Release_AtomicExchange()
340 Atomic64 new_value) { in Acquire_CompareAndSwap() argument
342 __tsan_atomic64_compare_exchange_strong(ptr, &cmp, new_value, in Acquire_CompareAndSwap()
349 Atomic64 new_value) { in Release_CompareAndSwap() argument
351 __tsan_atomic64_compare_exchange_strong(ptr, &cmp, new_value, in Release_CompareAndSwap()