Lines Matching refs:res

232 	unsigned long res;  in test_and_set_bit()  local
248 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit()
262 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit()
265 } while (unlikely(!res)); in test_and_set_bit()
267 res = temp & (1UL << bit); in test_and_set_bit()
269 res = __mips_test_and_set_bit(nr, addr); in test_and_set_bit()
273 return res != 0; in test_and_set_bit()
288 unsigned long res; in test_and_set_bit_lock() local
302 : "=&r" (temp), "+m" (*m), "=&r" (res) in test_and_set_bit_lock()
316 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit_lock()
319 } while (unlikely(!res)); in test_and_set_bit_lock()
321 res = temp & (1UL << bit); in test_and_set_bit_lock()
323 res = __mips_test_and_set_bit_lock(nr, addr); in test_and_set_bit_lock()
327 return res != 0; in test_and_set_bit_lock()
341 unsigned long res; in test_and_clear_bit() local
358 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
372 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
389 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
392 } while (unlikely(!res)); in test_and_clear_bit()
394 res = temp & (1UL << bit); in test_and_clear_bit()
396 res = __mips_test_and_clear_bit(nr, addr); in test_and_clear_bit()
400 return res != 0; in test_and_clear_bit()
415 unsigned long res; in test_and_change_bit() local
431 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_change_bit()
445 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_change_bit()
448 } while (unlikely(!res)); in test_and_change_bit()
450 res = temp & (1UL << bit); in test_and_change_bit()
452 res = __mips_test_and_change_bit(nr, addr); in test_and_change_bit()
456 return res != 0; in test_and_change_bit()