Lines Matching defs:cur
1241 /* current bit is 'cur', most recently seen range is [rbot, rtop] */
1242 int cur, rbot, rtop;
1248 rbot = cur = find_first_bit(bitmap, nr_bits);
1249 while (cur < nr_bits) {
1250 rtop = cur;
1251 cur = find_next_bit(bitmap, nr_bits, cur + 1);
1252 if (cur < nr_bits && cur <= rtop + 1)
1271 rbot = cur;