Searched refs:max_loop_count (Results 1 – 1 of 1) sorted by relevance
335 unsigned long max_loop_count, i; in ba_find_first_zero() local363 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[all …]