Lines Matching refs:c_op
28 #define BIT_OP(op, c_op, asm_op) \ argument
59 #define TEST_N_BIT_OP(op, c_op, asm_op) \ argument
106 #define BIT_OP(op, c_op, asm_op) \ argument
118 *m = temp c_op (1UL << (nr & 0x1f)); \
123 #define TEST_N_BIT_OP(op, c_op, asm_op) \ argument
132 *m = old c_op (1UL << (nr & 0x1f)); \
145 #define __BIT_OP(op, c_op, asm_op) \ argument
152 *m = temp c_op (1UL << (nr & 0x1f)); \
155 #define __TEST_N_BIT_OP(op, c_op, asm_op) \ argument
162 *m = old c_op (1UL << (nr & 0x1f)); \
167 #define BIT_OPS(op, c_op, asm_op) \ argument
170 BIT_OP(op, c_op, asm_op) \
173 TEST_N_BIT_OP(op, c_op, asm_op) \
176 __BIT_OP(op, c_op, asm_op) \
179 __TEST_N_BIT_OP(op, c_op, asm_op)