Searched defs:test_bit (Results 1 – 5 of 5) sorted by relevance
66 #define test_bit(bit, var) ((var) & (1 << (bit))) macro
45 test_bit(unsigned mask, unsigned bit) { in test_bit() function
10 static inline int test_bit(unsigned int nr, unsigned long *bitmap) in test_bit() function
151 #define test_bit(bit, array) (array[bit/8] & (1<<(bit%8))) macro
57 test_bit(unsigned int bit, unsigned long *addr) in test_bit() function