Searched refs:end_goal (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/udf/
H A Dballoc.c288 int end_goal, nr_groups, bitmap_nr, i; local
319 end_goal = (bit + 63) & ~63;
320 bit = udf_find_next_one_bit(bh->b_data, end_goal, bit);
321 if (bit < end_goal)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext3/
H A Dballoc.c711 * end_goal is more or less random, but it has to be
715 ext3_grpblk_t end_goal = (start + 63) & ~63; local
716 if (end_goal > maxblocks)
717 end_goal = maxblocks;
718 here = ext3_find_next_zero_bit(bh->b_data, end_goal, start);
719 if (here < end_goal && ext3_test_allocatable(here, bh))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext4/
H A Dballoc.c728 * end_goal is more or less random, but it has to be
732 ext4_grpblk_t end_goal = (start + 63) & ~63; local
733 if (end_goal > maxblocks)
734 end_goal = maxblocks;
735 here = ext4_find_next_zero_bit(bh->b_data, end_goal, start);
736 if (here < end_goal && ext4_test_allocatable(here, bh))

Completed in 59 milliseconds