Home
last modified time | relevance | path

Searched refs:BITS_PER_LONG (Results 1 – 1 of 1) sorted by relevance

/bootable/recovery/minui/
Devents.cpp33 #define BITS_PER_LONG (sizeof(unsigned long) * 8) macro
34 #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()