Home | History | Annotate | Download | only in ext2fs

Lines Matching full:group

494 					dgrp_t group,
505 extern errcode_t ext2fs_allocate_group_table(ext2_filsys fs, dgrp_t group,
624 dgrp_t group,
821 int group);
826 dgrp_t group,
988 extern blk_t ext2fs_group_first_block(ext2_filsys fs, dgrp_t group);
989 extern blk_t ext2fs_group_last_block(ext2_filsys fs, dgrp_t group);
1148 * Return the group # of a block
1157 * Return the group # of an inode number
1165 * Return the first block (inclusive) in a group
1167 _INLINE_ blk_t ext2fs_group_first_block(ext2_filsys fs, dgrp_t group)
1170 (group * fs->super->s_blocks_per_group);
1174 * Return the last block (inclusive) in a group
1176 _INLINE_ blk_t ext2fs_group_last_block(ext2_filsys fs, dgrp_t group)
1178 return (group == fs->group_desc_count - 1 ?
1180 ext2fs_group_first_block(fs, group) +