Searched refs:fileblock (Results 1 – 3 of 3) sorted by relevance
/external/linux-kselftest/tools/testing/selftests/powerpc/mm/ |
D | subpage_prot.c | 191 void *fileblock; in test_file() local 208 fileblock = mmap(NULL, filesize, PROT_READ | PROT_WRITE, in test_file() 210 if (fileblock == MAP_FAILED) { in test_file() 215 file_name, filesize, fileblock); in test_file() 219 return run_test(fileblock, filesize); in test_file()
|
/external/u-boot/fs/ext4/ |
D | ext4_common.c | 1528 uint32_t fileblock, int log2_blksz) in ext4fs_get_extent_block() argument 1548 } while (fileblock >= le32_to_cpu(index[i].ei_block)); in ext4fs_get_extent_block() 1617 long int read_allocated_block(struct ext2_inode *inode, int fileblock) in read_allocated_block() argument 1644 fileblock, log2_blksz); in read_allocated_block() 1657 if (startblock > fileblock) { in read_allocated_block() 1662 } else if (fileblock < endblock) { in read_allocated_block() 1667 return (fileblock - startblock) + start; in read_allocated_block() 1676 if (fileblock < INDIRECT_BLOCKS) in read_allocated_block() 1677 blknr = le32_to_cpu(inode->b.blocks.dir_blocks[fileblock]); in read_allocated_block() 1680 else if (fileblock < (INDIRECT_BLOCKS + (blksz / 4))) { in read_allocated_block() [all …]
|
/external/u-boot/include/ |
D | ext4fs.h | 148 long int read_allocated_block(struct ext2_inode *inode, int fileblock);
|