Lines Matching refs:new
80 #define atomic_long_cmpxchg_relaxed(l, old, new) \ argument
82 (old), (new)))
83 #define atomic_long_cmpxchg_acquire(l, old, new) \ argument
85 (old), (new)))
86 #define atomic_long_cmpxchg_release(l, old, new) \ argument
88 (old), (new)))
89 #define atomic_long_cmpxchg(l, old, new) \ argument
90 (ATOMIC_LONG_PFX(_cmpxchg)((ATOMIC_LONG_PFX(_t) *)(l), (old), (new)))
92 #define atomic_long_xchg_relaxed(v, new) \ argument
93 (ATOMIC_LONG_PFX(_xchg_relaxed)((ATOMIC_LONG_PFX(_t) *)(v), (new)))
94 #define atomic_long_xchg_acquire(v, new) \ argument
95 (ATOMIC_LONG_PFX(_xchg_acquire)((ATOMIC_LONG_PFX(_t) *)(v), (new)))
96 #define atomic_long_xchg_release(v, new) \ argument
97 (ATOMIC_LONG_PFX(_xchg_release)((ATOMIC_LONG_PFX(_t) *)(v), (new)))
98 #define atomic_long_xchg(v, new) \ argument
99 (ATOMIC_LONG_PFX(_xchg)((ATOMIC_LONG_PFX(_t) *)(v), (new)))