Lines Matching refs:blk
40 blk64_t blk, b; in ext2fs_check_desc() local
64 blk = ext2fs_block_bitmap_loc(fs, i); in ext2fs_check_desc()
65 if (blk < first_block || blk > last_block || in ext2fs_check_desc()
66 ext2fs_test_block_bitmap2(bmap, blk)) { in ext2fs_check_desc()
70 ext2fs_mark_block_bitmap2(bmap, blk); in ext2fs_check_desc()
75 blk = ext2fs_inode_bitmap_loc(fs, i); in ext2fs_check_desc()
76 if (blk < first_block || blk > last_block || in ext2fs_check_desc()
77 ext2fs_test_block_bitmap2(bmap, blk)) { in ext2fs_check_desc()
81 ext2fs_mark_block_bitmap2(bmap, blk); in ext2fs_check_desc()
86 blk = ext2fs_inode_table_loc(fs, i); in ext2fs_check_desc()
87 if (blk < first_block || in ext2fs_check_desc()
88 ((blk + fs->inode_blocks_per_group - 1) > last_block)) { in ext2fs_check_desc()
92 for (j = 0, b = blk; j < fs->inode_blocks_per_group; in ext2fs_check_desc()