Searched defs:bg (Results 1 - 2 of 2) sorted by relevance

/system/extras/ext4_utils/
H A Dext4_utils.c64 /* Returns 1 if the bg contains a backup superblock. On filesystems with
68 int ext4_bg_has_super_block(int bg) argument
74 if (bg == 0 || bg == 1)
77 if (is_power_of(bg, 3) || is_power_of(bg, 5) || is_power_of(bg, 7))
H A Dallocate.c41 int bg; member in struct:region
115 reg->bg * info.blocks_per_group + reg->block,
116 reg->bg * info.blocks_per_group + reg->block + reg->len - 1,
138 reg->bg = bg_num;
144 static void allocate_bg_inode_table(struct block_group_info *bg) argument
146 if (bg->inode_table != NULL)
149 u32 block = bg->first_block + 2;
151 if (bg->has_superblock)
154 bg->inode_table = calloc(aux_info.inode_table_blocks, info.block_size);
155 if (bg
166 struct block_group_info *bg; local
198 reserve_blocks(struct block_group_info *bg, u32 start, u32 num) argument
234 free_blocks(struct block_group_info *bg, u32 num_blocks) argument
273 init_bg(struct block_group_info *bg, unsigned int i) argument
338 struct block_group_info *bg = &aux_info.bgs[bg_num]; local
548 get_free_blocks(u32 bg) argument
682 int bg = inode / info.inodes_per_group; local
691 reserve_inodes(int bg, u32 num) argument
716 unsigned int bg; local
729 get_free_inodes(u32 bg) argument
737 int bg = (inode - 1) / info.inodes_per_group; local
742 get_directories(int bg) argument
[all...]

Completed in 20 milliseconds