Lines Matching defs:start
33 unsigned long start, unsigned long invert)
37 if (unlikely(start >= nbits))
40 tmp = addr1[start / BITS_PER_LONG];
42 tmp &= addr2[start / BITS_PER_LONG];
46 tmp &= BITMAP_FIRST_WORD_MASK(start);
47 start = round_down(start, BITS_PER_LONG);
50 start += BITS_PER_LONG;
51 if (start >= nbits)
54 tmp = addr1[start / BITS_PER_LONG];
56 tmp &= addr2[start / BITS_PER_LONG];
60 return min(start + __ffs(tmp), nbits);