Lines Matching refs:op
32 #define ATOMIC_OP(op, asm_op) \ argument
33 static __inline__ void atomic_##op(int i, atomic_t * v) \
48 #define ATOMIC_OP_RETURN(op, asm_op) \ argument
49 static inline int atomic_##op##_return(int i, atomic_t *v) \
68 #define ATOMIC64_OP(op, asm_op) \ argument
69 static __inline__ void atomic64_##op(long i, atomic64_t * v) \
84 #define ATOMIC64_OP_RETURN(op, asm_op) \ argument
85 static __inline__ long atomic64_##op##_return(long i, atomic64_t * v) \
104 #define ATOMIC_OPS(op) \ argument
105 ATOMIC_OP(op, op##l) \
106 ATOMIC_OP_RETURN(op, op##l) \
107 ATOMIC64_OP(op, op##q) \
108 ATOMIC64_OP_RETURN(op, op##q)