Home
last modified time | relevance | path

Searched refs:fileblock (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/fs/ext4/
H A Dext4_common.c1529 uint32_t fileblock, int log2_blksz) in ext4fs_get_extent_block() argument
1549 } while (fileblock >= le32_to_cpu(index[i].ei_block)); in ext4fs_get_extent_block()
1618 long int read_allocated_block(struct ext2_inode *inode, int fileblock) in read_allocated_block() argument
1645 fileblock, log2_blksz); in read_allocated_block()
1658 if (startblock > fileblock) { in read_allocated_block()
1663 } else if (fileblock < endblock) { in read_allocated_block()
1668 return (fileblock - startblock) + start; in read_allocated_block()
1677 if (fileblock < INDIRECT_BLOCKS) in read_allocated_block()
1678 blknr = le32_to_cpu(inode->b.blocks.dir_blocks[fileblock]); in read_allocated_block()
1681 else if (fileblock < (INDIRECT_BLOCKS + (blksz / 4))) { in read_allocated_block()
[all …]
/rk3399_rockchip-uboot/include/
H A Dext4fs.h150 long int read_allocated_block(struct ext2_inode *inode, int fileblock);