Lines Matching refs:BITS_PER_LONG
32 for (idx = 0; idx * BITS_PER_LONG < sz; idx++) { \
35 sz = min(idx * BITS_PER_LONG + __ffs(MUNGE(val)), sz); \
58 idx = __start / BITS_PER_LONG; \
61 if ((idx + 1) * BITS_PER_LONG >= sz) \
66 sz = min(idx * BITS_PER_LONG + __ffs(MUNGE(tmp)), sz); \
75 for (idx = 0; (idx + 1) * BITS_PER_LONG <= sz; idx++) { \
76 if (idx * BITS_PER_LONG + nr >= sz) \
87 if (sz % BITS_PER_LONG) \
90 sz = min(idx * BITS_PER_LONG + fns(tmp, nr), sz); \
208 unsigned long idx = (size-1) / BITS_PER_LONG; in _find_last_bit()
213 return idx * BITS_PER_LONG + __fls(val); in _find_last_bit()