Searched defs:test_and_clear_bit (Results 1 – 4 of 4) sorted by relevance
206 static __inline int test_and_clear_bit(int nr, volatile void * addr) in test_and_clear_bit() function
239 static __inline int test_and_clear_bit(int nr, volatile void * addr) in test_and_clear_bit() function
308 test_and_clear_bit(long bit, long *var) in test_and_clear_bit() function
169 #define test_and_clear_bit(bit, p) atomic_cmpset_int((p), ((*(p)) | (1<<bit)), ((*(p)) & ~(1<<bit))) macro