Lines Matching refs:new
135 __cmpxchg_u32(volatile unsigned int *p, unsigned long old, unsigned long new) in __cmpxchg_u32() argument
151 : "r" (p), "r" (old), "r" (new) in __cmpxchg_u32()
159 unsigned long new) in __cmpxchg_u32_local() argument
173 : "r" (p), "r" (old), "r" (new) in __cmpxchg_u32_local()
180 __cmpxchg_u32_relaxed(u32 *p, unsigned long old, unsigned long new) in __cmpxchg_u32_relaxed() argument
193 : "r" (p), "r" (old), "r" (new) in __cmpxchg_u32_relaxed()
208 __cmpxchg_u32_acquire(u32 *p, unsigned long old, unsigned long new) in __cmpxchg_u32_acquire() argument
223 : "r" (p), "r" (old), "r" (new) in __cmpxchg_u32_acquire()
231 __cmpxchg_u64(volatile unsigned long *p, unsigned long old, unsigned long new) in __cmpxchg_u64() argument
246 : "r" (p), "r" (old), "r" (new) in __cmpxchg_u64()
254 unsigned long new) in __cmpxchg_u64_local() argument
267 : "r" (p), "r" (old), "r" (new) in __cmpxchg_u64_local()
274 __cmpxchg_u64_relaxed(u64 *p, unsigned long old, unsigned long new) in __cmpxchg_u64_relaxed() argument
286 : "r" (p), "r" (old), "r" (new) in __cmpxchg_u64_relaxed()
293 __cmpxchg_u64_acquire(u64 *p, unsigned long old, unsigned long new) in __cmpxchg_u64_acquire() argument
307 : "r" (p), "r" (old), "r" (new) in __cmpxchg_u64_acquire()
315 __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, in __cmpxchg() argument
320 return __cmpxchg_u32(ptr, old, new); in __cmpxchg()
323 return __cmpxchg_u64(ptr, old, new); in __cmpxchg()
331 __cmpxchg_local(volatile void *ptr, unsigned long old, unsigned long new, in __cmpxchg_local() argument
336 return __cmpxchg_u32_local(ptr, old, new); in __cmpxchg_local()
339 return __cmpxchg_u64_local(ptr, old, new); in __cmpxchg_local()
347 __cmpxchg_relaxed(void *ptr, unsigned long old, unsigned long new, in __cmpxchg_relaxed() argument
352 return __cmpxchg_u32_relaxed(ptr, old, new); in __cmpxchg_relaxed()
355 return __cmpxchg_u64_relaxed(ptr, old, new); in __cmpxchg_relaxed()
363 __cmpxchg_acquire(void *ptr, unsigned long old, unsigned long new, in __cmpxchg_acquire() argument
368 return __cmpxchg_u32_acquire(ptr, old, new); in __cmpxchg_acquire()
371 return __cmpxchg_u64_acquire(ptr, old, new); in __cmpxchg_acquire()