Lines Matching defs:group
303 dgrp_t group, start, end, i, log_flex;
339 * the filesystem. Pick a group that has the largest number
342 group = ext2fs_group_of_blk2(fs, (ext2fs_blocks_count(fs->super) -
345 if (fs->super->s_log_groups_per_flex && (group > log_flex)) {
346 group = group & ~(log_flex - 1);
347 while ((group < fs->group_desc_count) &&
348 ext2fs_bg_free_blocks_count(fs, group) == 0)
349 group++;
350 if (group == fs->group_desc_count)
351 group = 0;
352 start = group;
354 start = (group > 0) ? group-1 : group;
355 end = ((group+1) < fs->group_desc_count) ? group+1 : group;
356 group = start;
359 ext2fs_bg_free_blocks_count(fs, group))
360 group = i;
362 es.goal = ext2fs_group_first_block2(fs, group);