Home
last modified time | relevance | path

Searched refs:blockcnt (Results 1 – 5 of 5) sorted by relevance

/openbmc/u-boot/fs/ext4/
H A Dext4fs.c53 lbaint_t blockcnt; in ext4fs_read_file() local
73 blockcnt = lldiv(((len + pos) + blocksize - 1), blocksize); in ext4fs_read_file()
75 for (i = lldiv(pos, blocksize); i < blockcnt; i++) { in ext4fs_read_file()
87 if (i == blockcnt - 1) { in ext4fs_read_file()
H A Dext4_write.c758 int blockcnt; in ext4fs_write_file() local
773 blockcnt = ((len + pos) + fs->blksz - 1) / fs->blksz; in ext4fs_write_file()
775 for (i = pos / fs->blksz; i < blockcnt; i++) { in ext4fs_write_file()
930 file_inode->blockcnt = cpu_to_le32((blks_reqd_for_file * fs->blksz) >> in ext4fs_write()
H A Dext4_common.c571 new_blockcnt = le32_to_cpu(g_parent_inode->blockcnt); in ext4fs_update_parent_dentry()
573 g_parent_inode->blockcnt = cpu_to_le32(new_blockcnt); in ext4fs_update_parent_dentry()
/openbmc/openbmc/poky/meta/recipes-devtools/syslinux/syslinux/
H A D0007-linux-syslinux-implement-ext_construct_sectmap_fs.patch29 + e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)),
/openbmc/u-boot/include/
H A Dext_common.h168 __le32 blockcnt; /* Blocks of either 512 or block_size bytes */ member