Lines Matching refs:op
55 #define ATOMIC_OP(op, c_op, asm_op) \ argument
56 static inline void atomic_##op(int i, atomic_t *v) \
75 #define ATOMIC_OP_RETURN(op, c_op, asm_op) \ argument
76 static inline int atomic_##op##_return(int i, atomic_t *v) \
139 #define ATOMIC_OP(op, c_op, asm_op) \ argument
140 static inline void atomic_##op(int i, atomic_t *v) \
149 #define ATOMIC_OP_RETURN(op, c_op, asm_op) \ argument
150 static inline int atomic_##op##_return(int i, atomic_t *v) \
169 #define ATOMIC_OPS(op, c_op, asm_op) \ argument
170 ATOMIC_OP(op, c_op, asm_op) \
171 ATOMIC_OP_RETURN(op, c_op, asm_op)