Home
last modified time | relevance | path

Searched refs:newblocks (Results 1 – 4 of 4) sorted by relevance

/external/e2fsprogs/lib/ext2fs/
Dexpanddir.c25 int newblocks; member
58 es->newblocks++; in expand_dir_proc()
112 es.newblocks = 0; in ext2fs_expand_dir()
133 ext2fs_iblk_add_blocks(fs, &inode, es.newblocks); in ext2fs_expand_dir()
/external/python/cpython2/Lib/
Ddumbdbm.py172 newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE
173 if newblocks <= oldblocks:
/external/e2fsprogs/e2fsck/
Dpass3.c779 blk64_t newblocks; member
823 es->newblocks++; in expand_dir_proc()
879 es.newblocks = 0; in e2fsck_expand_directory()
901 ext2fs_iblk_add_blocks(fs, EXT2_INODE(&inode), es.newblocks); in e2fsck_expand_directory()
903 es.newblocks * EXT2_CLUSTER_SIZE(fs->super)); in e2fsck_expand_directory()
/external/python/cpython3/Lib/dbm/
Ddumb.py214 newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE
215 if newblocks <= oldblocks: