Lines Matching refs:tmp
103 unsigned long tmp; in set_bit() local
114 : "=&a" (tmp) in set_bit()
121 unsigned long tmp; in clear_bit() local
132 : "=&a" (tmp) in clear_bit()
139 unsigned long tmp; in change_bit() local
150 : "=&a" (tmp) in change_bit()
158 unsigned long tmp, value; in test_and_set_bit() local
169 : "=&a" (tmp), "=&a" (value) in test_and_set_bit()
179 unsigned long tmp, value; in test_and_clear_bit() local
190 : "=&a" (tmp), "=&a" (value) in test_and_clear_bit()
200 unsigned long tmp, value; in test_and_change_bit() local
211 : "=&a" (tmp), "=&a" (value) in test_and_change_bit()
222 unsigned long tmp, value; in set_bit() local
233 : "=&a" (tmp), "=&a" (value) in set_bit()
240 unsigned long tmp, value; in clear_bit() local
251 : "=&a" (tmp), "=&a" (value) in clear_bit()
258 unsigned long tmp, value; in change_bit() local
269 : "=&a" (tmp), "=&a" (value) in change_bit()
277 unsigned long tmp, value; in test_and_set_bit() local
288 : "=&a" (tmp), "=&a" (value) in test_and_set_bit()
292 return tmp & mask; in test_and_set_bit()
298 unsigned long tmp, value; in test_and_clear_bit() local
309 : "=&a" (tmp), "=&a" (value) in test_and_clear_bit()
313 return tmp & mask; in test_and_clear_bit()
319 unsigned long tmp, value; in test_and_change_bit() local
330 : "=&a" (tmp), "=&a" (value) in test_and_change_bit()
334 return tmp & mask; in test_and_change_bit()