Lines Matching defs:new
70 int atomic_xchg(atomic_t *v, int new)
77 v->counter = new;
83 int atomic_cmpxchg(atomic_t *v, int old, int new)
91 v->counter = new;
162 unsigned long __cmpxchg_u32(volatile u32 *ptr, u32 old, u32 new)
169 *ptr = new;
176 u64 __cmpxchg_u64(u64 *ptr, u64 old, u64 new)
183 *ptr = new;
190 unsigned long __xchg_u32(volatile u32 *ptr, u32 new)
197 *ptr = new;