Lines Matching refs:here
609 ext2_grpblk_t here, next; in find_next_usable_block() local
624 here = ext2_find_next_zero_bit(bh->b_data, end_goal, start); in find_next_usable_block()
625 if (here < end_goal) in find_next_usable_block()
626 return here; in find_next_usable_block()
630 here = start; in find_next_usable_block()
631 if (here < 0) in find_next_usable_block()
632 here = 0; in find_next_usable_block()
634 p = ((char *)bh->b_data) + (here >> 3); in find_next_usable_block()
635 r = memscan(p, 0, ((maxblocks + 7) >> 3) - (here >> 3)); in find_next_usable_block()
638 if (next < maxblocks && next >= here) in find_next_usable_block()
641 here = bitmap_search_next_usable_block(here, bh, maxblocks); in find_next_usable_block()
642 return here; in find_next_usable_block()