Searched refs:BITS_PER_LONG (Results 1 – 1 of 1) sorted by relevance
33 #define BITS_PER_LONG (sizeof(unsigned long) * 8) macro34 #define BITS_TO_LONGS(x) (((x) + BITS_PER_LONG - 1) / BITS_PER_LONG)53 return (array[bit/BITS_PER_LONG] & (1UL << (bit % BITS_PER_LONG))) != 0; in test_bit()