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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ext2/
H A Dballoc.c617 * end_goal is more or less random, but it has to be
621 ext2_grpblk_t end_goal = (start + 63) & ~63; local
622 if (end_goal > maxblocks)
623 end_goal = maxblocks;
624 here = ext2_find_next_zero_bit(bh->b_data, end_goal, start);
625 if (here < end_goal)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/udf/
H A Dballoc.c233 int end_goal, nr_groups, bitmap_nr, i; local
262 end_goal = (bit + 63) & ~63;
263 bit = udf_find_next_one_bit(bh->b_data, end_goal, bit);
264 if (bit < end_goal)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ext3/
H A Dballoc.c774 * end_goal is more or less random, but it has to be
778 ext3_grpblk_t end_goal = (start + 63) & ~63; local
779 if (end_goal > maxblocks)
780 end_goal = maxblocks;
781 here = ext3_find_next_zero_bit(bh->b_data, end_goal, start);
782 if (here < end_goal && ext3_test_allocatable(here, bh))

Completed in 115 milliseconds