Lines Matching refs:max_loop_count
335 unsigned long max_loop_count, i; in ba_find_first_zero() local
363 max_loop_count = count >> 6; /* 8-byte blocks */ in ba_find_first_zero()
364 i = max_loop_count; in ba_find_first_zero()
371 count -= 64 * (max_loop_count - i); in ba_find_first_zero()
372 bitpos += 64 * (max_loop_count - i); in ba_find_first_zero()
374 max_loop_count = count >> 3; in ba_find_first_zero()
375 i = max_loop_count; in ba_find_first_zero()
384 count -= 8 * (max_loop_count - i); in ba_find_first_zero()
385 bitpos += 8 * (max_loop_count - i); in ba_find_first_zero()
409 unsigned long max_loop_count, i; in ba_find_first_set() local
437 max_loop_count = count >> 6; /* 8-byte blocks */ in ba_find_first_set()
438 i = max_loop_count; in ba_find_first_set()
445 count -= 64 * (max_loop_count - i); in ba_find_first_set()
446 bitpos += 64 * (max_loop_count - i); in ba_find_first_set()
448 max_loop_count = count >> 3; in ba_find_first_set()
449 i = max_loop_count; in ba_find_first_set()
458 count -= 8 * (max_loop_count - i); in ba_find_first_set()
459 bitpos += 8 * (max_loop_count - i); in ba_find_first_set()