Lines Matching refs:op
26 #define ATOMIC_OP(op, c_op, asm_op) \ argument
27 static inline void atomic_##op(int i, atomic_t *v) \
41 #define ATOMIC_OP_RETURN(op, c_op, asm_op) \ argument
42 static inline int atomic_##op##_return(int i, atomic_t *v) \
100 #define ATOMIC_OP(op, c_op, asm_op) \ argument
101 static inline void atomic_##op(int i, atomic_t *v) \
110 #define ATOMIC_OP_RETURN(op, c_op, asm_op) \ argument
111 static inline int atomic_##op##_return(int i, atomic_t *v) \
130 #define ATOMIC_OPS(op, c_op, asm_op) \ argument
131 ATOMIC_OP(op, c_op, asm_op) \
132 ATOMIC_OP_RETURN(op, c_op, asm_op)