HomeSort by relevance Sort by last modified time
    Searched refs:ext2fs_blocks_count (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/e2fsprogs/misc/
findsuper.c 221 if (ext2fs_r_blocks_count(&ext2) > ext2fs_blocks_count(&ext2))
224 ext2fs_blocks_count(&ext2));
225 if (ext2fs_free_blocks_count(&ext2) > ext2fs_blocks_count(&ext2))
228 ext2fs_blocks_count(&ext2));
257 sk + ext2fs_blocks_count(&ext2) * bsize -
259 jnl_copy ? "*" : " ", ext2fs_blocks_count(&ext2), bsize,
e2freefrag.c 98 unsigned long long blocks_count = ext2fs_blocks_count(fs->super);
158 ext2fs_blocks_count(fs->super), fs->super->s_free_blocks_count,
160 ext2fs_blocks_count(fs->super));
165 total_chunks = (ext2fs_blocks_count(fs->super) +
mke2fs.c 259 fs->device_name, ext2fs_blocks_count(fs->super)-1);
391 blk64_t end = ext2fs_blocks_count(fs->super) - 1;
603 ext2fs_blocks_count(fs->super), 0, &buf);
615 ext2fs_blocks_count(fs->super));
617 count = ext2fs_blocks_count(fs->super);
660 ext2fs_blocks_count(s), fs->blocksize >> 10,
665 if (ext2fs_blocks_count(&fs_param) != ext2fs_blocks_count(s))
667 ext2fs_blocks_count(&fs_param) - ext2fs_blocks_count(s))
    [all...]
util.c 242 j_blocks = ext2fs_default_journal_size(ext2fs_blocks_count(fs->super));
  /external/e2fsprogs/lib/ext2fs/
alloc_sb.c 69 if (old_desc_blk + num_blocks >= ext2fs_blocks_count(fs->super))
70 num_blocks = ext2fs_blocks_count(fs->super) -
initialize.c 70 if (ext2fs_blocks_count(sb) < max_blocks / 1024)
71 max_blocks = ext2fs_blocks_count(sb) * 1024;
112 if (!param || !ext2fs_blocks_count(param))
258 ext2fs_blocks_count_set(super, ext2fs_blocks_count(param) &
261 if (ext2fs_r_blocks_count(super) >= ext2fs_blocks_count(param)) {
281 ext2fs_blocks_count(super) - super->s_first_data_block,
298 (ext2fs_blocks_count(super) / i) > (1ULL << 32))
301 set_field(s_inodes_count, ext2fs_blocks_count(super) / i);
322 ext2fs_blocks_count(param));
433 rem = ((ext2fs_blocks_count(super) - super->s_first_data_block)
    [all...]
alloc_stats.c 65 if (blk >= ext2fs_blocks_count(fs->super)) {
113 if (blk + num > ext2fs_blocks_count(fs->super)) {
check_desc.c 39 blk64_t last_block = ext2fs_blocks_count(fs->super)-1;
read_bb.c 53 (*block_nr >= ext2fs_blocks_count(fs->super)))
read_bb_file.c 66 (blockno >= ext2fs_blocks_count(fs->super)))) {
blknum.c 41 ext2fs_blocks_count(fs->super) - 1 :
54 num_blocks = (ext2fs_blocks_count(fs->super) -
91 blk64_t ext2fs_blocks_count(struct ext2_super_block *super) function
114 tmp = ext2fs_blocks_count(super) + blk;
bitmaps.c 96 end = EXT2FS_B2C(fs, ext2fs_blocks_count(fs->super)-1);
141 end = ext2fs_blocks_count(fs->super)-1;
alloc.c 184 if (!goal || (goal >= ext2fs_blocks_count(fs->super)))
189 goal, ext2fs_blocks_count(fs->super) - 1, &b);
305 if (b + num - 1 >= ext2fs_blocks_count(fs->super)) {
410 blk64_t max_blocks = ext2fs_blocks_count(fs->super);
441 if (!goal || goal >= ext2fs_blocks_count(fs->super))
openfs.c 68 ext2fs_blocks_count(fs->super))) {
372 fs->super->s_first_data_block >= ext2fs_blocks_count(fs->super)) {
376 fs->group_desc_count = ext2fs_div64_ceil(ext2fs_blocks_count(fs->super) -
bmove.c 58 if (++block >= ext2fs_blocks_count(fs->super))
  /external/e2fsprogs/e2fsck/
badblocks.c 79 fs->device_name, ext2fs_blocks_count(fs->super)-1);
131 if (*block_nr >= ext2fs_blocks_count(fs->super) ||
ehandler.c 63 if (block >= ext2fs_blocks_count(fs->super))
pass5.c 319 blk64_t first_free = ext2fs_blocks_count(fs->super);
340 (B2C(ext2fs_blocks_count(fs->super)-1) >
344 pctx.blk2 = B2C(ext2fs_blocks_count(fs->super) - 1);
355 (B2C(ext2fs_blocks_count(fs->super)-1) >
359 pctx.blk2 = B2C(ext2fs_blocks_count(fs->super) - 1);
373 i < ext2fs_blocks_count(fs->super);
477 first_free = ext2fs_blocks_count(fs->super);
482 EXT2FS_B2C(fs, ext2fs_blocks_count(fs->super)-1))) {
491 first_free = ext2fs_blocks_count(fs->super);
super.c 83 (blk >= ext2fs_blocks_count(fs->super))) {
383 blk >= ext2fs_blocks_count(fs->super))) {
507 check_super_value(ctx, "blocks_count", ext2fs_blocks_count(sb),
510 MAX_CHECK, 0, ext2fs_blocks_count(sb));
526 MAX_CHECK, 0, ext2fs_blocks_count(sb) / 2);
551 (ctx->num_blocks < ext2fs_blocks_count(sb))) {
552 pctx.blk = ext2fs_blocks_count(sb);
658 last_block = ext2fs_blocks_count(sb)-1;
764 if ((ext2fs_free_blocks_count(sb) > ext2fs_blocks_count(sb)) ||
  /external/e2fsprogs/ext2ed/
super_com.c 33 if (ext2fs_blocks_count(super) != 0) {
34 wmove (show_pad,2,40);wprintw (show_pad,"%2.2f%%",100*(float) ext2fs_r_blocks_count(super)/ (float) ext2fs_blocks_count(super));
35 wmove (show_pad,3,40);wprintw (show_pad,"%2.2f%%",100*(float) ext2fs_free_blocks_count(super)/ (float) ext2fs_blocks_count(super));
  /external/e2fsprogs/debugfs/
unused.c 40 blk < ext2fs_blocks_count(current_fs->super); blk++) {
e2freefrag.c 98 unsigned long long blocks_count = ext2fs_blocks_count(fs->super);
158 ext2fs_blocks_count(fs->super), fs->super->s_free_blocks_count,
160 ext2fs_blocks_count(fs->super));
165 total_chunks = (ext2fs_blocks_count(fs->super) +
  /external/e2fsprogs/resize/
online.c 89 if (*new_size < ext2fs_blocks_count(sb)) {
126 if ((ext2fs_blocks_count(sb) > MAX_32_NUM) ||
173 size = ext2fs_blocks_count(sb);
189 ext2fs_blocks_count(sb);
resize2fs.c 169 *new_size = ext2fs_blocks_count(rfs->new_fs->super);
296 if (new_size != ext2fs_blocks_count(rfs->new_fs->super) ||
297 ext2fs_blocks_count(rfs->new_fs->super) >= (1ULL << 32) ||
408 b < ext2fs_blocks_count(rfs->new_fs->super);
461 cluster_ratio > 1 && b < ext2fs_blocks_count(rfs->new_fs->super);
655 (blk < ext2fs_blocks_count(fs->super)) &&
663 (blk < ext2fs_blocks_count(fs->super)) &&
672 if (blk >= ext2fs_blocks_count(fs->super) ||
708 fs->group_desc_count = ext2fs_div64_ceil(ext2fs_blocks_count(fs->super) -
745 rem = (ext2fs_blocks_count(fs->super) - fs->super->s_first_data_block)
    [all...]
  /external/e2fsprogs/contrib/android/
e2fsdroid.c 199 blocks_count = ext2fs_blocks_count(fs->super);

Completed in 248 milliseconds

1 2 3