Lines Matching refs:old
113 __cmpxchg_u32(volatile unsigned int *p, unsigned int old, unsigned int new) in __cmpxchg_u32() argument
131 : "r" (p), "r" (old), "r" (new) in __cmpxchg_u32()
143 __cmpxchg_local_u32(volatile unsigned int *p, unsigned int old, in __cmpxchg_local_u32() argument
162 : "r" (p), "r" (old), "r" (new) in __cmpxchg_local_u32()
178 __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size) in __cmpxchg() argument
182 return __cmpxchg_u32(ptr, old, new); in __cmpxchg()
185 return __cmpxchg_u64(ptr, old, new); in __cmpxchg()
189 return old; in __cmpxchg()
199 unsigned long old, in __cmpxchg_local() argument
204 return __cmpxchg_local_u32(ptr, old, new); in __cmpxchg_local()
206 return __cmpxchg_local_generic(ptr, old, new, size); in __cmpxchg_local()
209 return old; in __cmpxchg_local()