Lines Matching refs:op
62 #define ATOMIC_OP(op) \ argument
63 static inline void atomic_##op(int i, atomic_t * v) \
71 " " #op " %0, %1, %2\n" \
80 #define ATOMIC_OP_RETURN(op) \ argument
81 static inline int atomic_##op##_return(int i, atomic_t * v) \
89 " " #op " %0, %1, %2\n" \
92 " " #op " %0, %0, %2\n" \
103 #define ATOMIC_OP(op) \ argument
104 static inline void atomic_##op(int i, atomic_t * v) \
111 " " #op " %0, %0, %1\n" \
121 #define ATOMIC_OP_RETURN(op) \ argument
122 static inline int atomic_##op##_return(int i, atomic_t * v) \
129 " " #op " %0, %0, %1\n" \
143 #define ATOMIC_OPS(op) ATOMIC_OP(op) ATOMIC_OP_RETURN(op) argument