Lines Matching refs:temp

57 	unsigned long temp;  in set_bit()  local
68 : "=&r" (temp), "=" GCC_OFF_SMALL_ASM() (*m) in set_bit()
79 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in set_bit()
82 } while (unlikely(!temp)); in set_bit()
94 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in set_bit()
97 } while (unlikely(!temp)); in set_bit()
116 unsigned long temp; in clear_bit() local
127 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in clear_bit()
138 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in clear_bit()
141 } while (unlikely(!temp)); in clear_bit()
153 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in clear_bit()
156 } while (unlikely(!temp)); in clear_bit()
190 unsigned long temp; in change_bit() local
200 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in change_bit()
205 unsigned long temp; in change_bit() local
216 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m) in change_bit()
219 } while (unlikely(!temp)); in change_bit()
242 unsigned long temp; in test_and_set_bit() local
253 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit()
258 unsigned long temp; in test_and_set_bit() local
269 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit()
274 res = temp & (1UL << bit); in test_and_set_bit()
299 unsigned long temp; in test_and_set_bit_lock() local
310 : "=&r" (temp), "+m" (*m), "=&r" (res) in test_and_set_bit_lock()
315 unsigned long temp; in test_and_set_bit_lock() local
326 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_set_bit_lock()
331 res = temp & (1UL << bit); in test_and_set_bit_lock()
357 unsigned long temp; in test_and_clear_bit() local
369 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
375 unsigned long temp; in test_and_clear_bit() local
384 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
387 } while (unlikely(!temp)); in test_and_clear_bit()
391 unsigned long temp; in test_and_clear_bit() local
403 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_clear_bit()
408 res = temp & (1UL << bit); in test_and_clear_bit()
435 unsigned long temp; in test_and_change_bit() local
446 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_change_bit()
451 unsigned long temp; in test_and_change_bit() local
462 : "=&r" (temp), "+" GCC_OFF_SMALL_ASM() (*m), "=&r" (res) in test_and_change_bit()
467 res = temp & (1UL << bit); in test_and_change_bit()