Home | History | Annotate | Download | only in e2fsck

Lines Matching defs:bitmap

203 	int	actual, bitmap;
218 "actual bitmap buffer");
220 "bitmap block buffer");
276 * Try to optimize pass5 by extracting a bitmap block
336 bitmap = 0;
347 bitmap = 1;
355 * When the compare data blocks in block bitmap
375 bitmap = 1;
380 bitmap = actual;
382 bitmap = ext2fs_fast_test_block_bitmap2(fs->block_map, i);
384 if (!actual == !bitmap)
387 if (!actual && bitmap) {
389 * Block not used, but marked in use in the bitmap.
394 * Block used, but not marked in use in the bitmap.
431 if (!bitmap) {
449 if (!bitmap && i >= first_free)
542 int actual, bitmap;
598 bitmap = 0;
609 * When the compared inodes in inodes bitmap
625 bitmap = actual;
627 bitmap = ext2fs_fast_test_inode_bitmap2(fs->inode_map, i);
628 if (!actual == !bitmap)
631 if (!actual && bitmap) {
633 * Inode wasn't used, but marked in bitmap
636 } else /* if (actual && !bitmap) */ {
638 * Inode used, but not in bitmap
679 if (bitmap) {
699 if (!bitmap && inodes >= first_free)