Lines Matching refs:c_op
31 #define BIT_OP(op, c_op, asm_op) \ argument
77 #define TEST_N_BIT_OP(op, c_op, asm_op) \ argument
124 #define BIT_OP(op, c_op, asm_op) \ argument
136 *m = temp c_op (1UL << (nr & 0x1f)); \
141 #define TEST_N_BIT_OP(op, c_op, asm_op) \ argument
150 *m = old c_op (1UL << (nr & 0x1f)); \
163 #define __BIT_OP(op, c_op, asm_op) \ argument
170 *m = temp c_op (1UL << (nr & 0x1f)); \
173 #define __TEST_N_BIT_OP(op, c_op, asm_op) \ argument
180 *m = old c_op (1UL << (nr & 0x1f)); \
185 #define BIT_OPS(op, c_op, asm_op) \ argument
188 BIT_OP(op, c_op, asm_op) \
191 TEST_N_BIT_OP(op, c_op, asm_op) \
194 __BIT_OP(op, c_op, asm_op) \
197 __TEST_N_BIT_OP(op, c_op, asm_op)