Lines Matching defs:new
17 static inline void atomic_set(atomic_t *v, int new)
24 : "r" (&v->counter), "r" (new)
42 * @new: new value (technically passed in a register -- see xchg)
44 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new)))
51 * @new: new value to put in
64 static inline int atomic_cmpxchg(atomic_t *v, int old, int new)
71 " if (!P0.new) jump:nt 2f; }\n"
76 : "r" (&v->counter), "r" (old), "r" (new)
169 " if (p3.new) jump:nt 2f;"