Lines Matching defs:res
183 unsigned long res, orig;
186 res = __mips_test_and_set_bit_lock(nr, addr);
191 res = (orig & BIT(bit)) != 0;
196 return res;
227 unsigned long res, orig;
232 res = __mips_test_and_clear_bit(nr, addr);
234 res = __test_bit_op(*m, "%1",
243 res = (orig & BIT(bit)) != 0;
248 return res;
264 unsigned long res, orig;
269 res = __mips_test_and_change_bit(nr, addr);
274 res = (orig & BIT(bit)) != 0;
279 return res;