Lines Matching refs:BITS_IN_LONG
4 #define BITS_IN_LONG (sizeof(unsigned long)*8)
5 #define LONGS(x) ((x + BITS_IN_LONG - 1) & -BITS_IN_LONG)
12 unsigned long offset = nr / BITS_IN_LONG;
13 unsigned long bit = nr & (BITS_IN_LONG-1);
19 unsigned long offset = nr / BITS_IN_LONG;
20 unsigned long bit = nr & (BITS_IN_LONG-1);
26 unsigned long offset = nr / BITS_IN_LONG;
27 unsigned long bit = nr & (BITS_IN_LONG-1);
33 unsigned long offset = nr / BITS_IN_LONG;
34 unsigned long bit = nr & (BITS_IN_LONG-1);
43 unsigned long offset = nr / BITS_IN_LONG;
44 unsigned long bit = nr & (BITS_IN_LONG-1);