Lines Matching refs:mask
106 unsigned long mask = 1UL << (bit & 31); in set_bit() local
117 : "a" (mask), "a" (p) in set_bit()
124 unsigned long mask = 1UL << (bit & 31); in clear_bit() local
135 : "a" (~mask), "a" (p) in clear_bit()
142 unsigned long mask = 1UL << (bit & 31); in change_bit() local
153 : "a" (mask), "a" (p) in change_bit()
161 unsigned long mask = 1UL << (bit & 31); in test_and_set_bit() local
172 : "a" (mask), "a" (p) in test_and_set_bit()
175 return tmp & mask; in test_and_set_bit()
182 unsigned long mask = 1UL << (bit & 31); in test_and_clear_bit() local
193 : "a" (~mask), "a" (p) in test_and_clear_bit()
196 return tmp & mask; in test_and_clear_bit()
203 unsigned long mask = 1UL << (bit & 31); in test_and_change_bit() local
214 : "a" (mask), "a" (p) in test_and_change_bit()
217 return tmp & mask; in test_and_change_bit()