Home | History | Annotate | Download | only in ext2fs

Lines Matching full:bitmap

2  * bitops.h --- Bitmap frobbing code.  The byte swapping routines are
44 * EXT2FS bitmap manipulation routines.
55 extern void ext2fs_warn_bitmap2(ext2fs_generic_bitmap bitmap,
67 extern int ext2fs_mark_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block);
68 extern int ext2fs_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
70 extern int ext2fs_test_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block);
72 extern int ext2fs_mark_inode_bitmap(ext2fs_inode_bitmap bitmap, ext2_ino_t inode);
73 extern int ext2fs_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
75 extern int ext2fs_test_inode_bitmap(ext2fs_inode_bitmap bitmap, ext2_ino_t inode);
77 extern void ext2fs_fast_mark_block_bitmap(ext2fs_block_bitmap bitmap,
79 extern void ext2fs_fast_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
81 extern int ext2fs_fast_test_block_bitmap(ext2fs_block_bitmap bitmap,
84 extern void ext2fs_fast_mark_inode_bitmap(ext2fs_inode_bitmap bitmap,
86 extern void ext2fs_fast_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
88 extern int ext2fs_fast_test_inode_bitmap(ext2fs_inode_bitmap bitmap,
90 extern blk_t ext2fs_get_block_bitmap_start(ext2fs_block_bitmap bitmap);
91 extern ext2_ino_t ext2fs_get_inode_bitmap_start(ext2fs_inode_bitmap bitmap);
92 extern blk_t ext2fs_get_block_bitmap_end(ext2fs_block_bitmap bitmap);
93 extern ext2_ino_t ext2fs_get_inode_bitmap_end(ext2fs_inode_bitmap bitmap);
95 extern void ext2fs_fast_mark_block_bitmap_range(ext2fs_block_bitmap bitmap,
97 extern void ext2fs_fast_unmark_block_bitmap_range(ext2fs_block_bitmap bitmap,
99 extern int ext2fs_fast_test_block_bitmap_range(ext2fs_block_bitmap bitmap,
104 extern void ext2fs_mark_block_bitmap_range(ext2fs_block_bitmap bitmap,
106 extern void ext2fs_unmark_block_bitmap_range(ext2fs_block_bitmap bitmap,
108 extern int ext2fs_test_block_bitmap_range(ext2fs_block_bitmap bitmap,
110 extern int ext2fs_test_inode_bitmap_range(ext2fs_inode_bitmap bitmap,
112 extern int ext2fs_mark_generic_bitmap(ext2fs_generic_bitmap bitmap,
114 extern int ext2fs_unmark_generic_bitmap(ext2fs_generic_bitmap bitmap,
116 extern int ext2fs_test_generic_bitmap(ext2fs_generic_bitmap bitmap,
118 extern int ext2fs_test_block_bitmap_range(ext2fs_block_bitmap bitmap,
121 extern __u32 ext2fs_get_generic_bitmap_start(ext2fs_generic_bitmap bitmap);
122 extern __u32 ext2fs_get_generic_bitmap_end(ext2fs_generic_bitmap bitmap);
127 extern int ext2fs_mark_block_bitmap2(ext2fs_block_bitmap bitmap,
129 extern int ext2fs_unmark_block_bitmap2(ext2fs_block_bitmap bitmap,
131 extern int ext2fs_test_block_bitmap2(ext2fs_block_bitmap bitmap,
134 extern int ext2fs_mark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
136 extern int ext2fs_unmark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
138 extern int ext2fs_test_inode_bitmap2(ext2fs_inode_bitmap bitmap,
141 extern void ext2fs_fast_mark_block_bitmap2(ext2fs_block_bitmap bitmap,
143 extern void ext2fs_fast_unmark_block_bitmap2(ext2fs_block_bitmap bitmap,
145 extern int ext2fs_fast_test_block_bitmap2(ext2fs_block_bitmap bitmap,
148 extern void ext2fs_fast_mark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
150 extern void ext2fs_fast_unmark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
152 extern int ext2fs_fast_test_inode_bitmap2(ext2fs_inode_bitmap bitmap,
154 extern errcode_t ext2fs_find_first_zero_block_bitmap2(ext2fs_block_bitmap bitmap,
158 extern errcode_t ext2fs_find_first_zero_inode_bitmap2(ext2fs_inode_bitmap bitmap,
162 extern errcode_t ext2fs_find_first_set_block_bitmap2(ext2fs_block_bitmap bitmap,
166 extern errcode_t ext2fs_find_first_set_inode_bitmap2(ext2fs_inode_bitmap bitmap,
170 extern blk64_t ext2fs_get_block_bitmap_start2(ext2fs_block_bitmap bitmap);
171 extern ext2_ino_t ext2fs_get_inode_bitmap_start2(ext2fs_inode_bitmap bitmap);
172 extern blk64_t ext2fs_get_block_bitmap_end2(ext2fs_block_bitmap bitmap);
173 extern ext2_ino_t ext2fs_get_inode_bitmap_end2(ext2fs_inode_bitmap bitmap);
175 extern int ext2fs_fast_test_block_bitmap_range2(ext2fs_block_bitmap bitmap,
178 extern void ext2fs_fast_mark_block_bitmap_range2(ext2fs_block_bitmap bitmap,
181 extern void ext2fs_fast_unmark_block_bitmap_range2(ext2fs_block_bitmap bitmap,
187 extern void ext2fs_clear_generic_bmap(ext2fs_generic_bitmap bitmap);
192 extern int ext2fs_mark_generic_bmap(ext2fs_generic_bitmap bitmap,
194 extern int ext2fs_unmark_generic_bmap(ext2fs_generic_bitmap bitmap,
196 extern int ext2fs_test_generic_bmap(ext2fs_generic_bitmap bitmap,
198 extern int ext2fs_test_block_bitmap_range2(ext2fs_block_bitmap bitmap,
200 extern __u64 ext2fs_get_generic_bmap_start(ext2fs_generic_bitmap bitmap);
201 extern __u64 ext2fs_get_generic_bmap_end(ext2fs_generic_bitmap bitmap);
202 extern int ext2fs_test_block_bitmap_range2(ext2fs_block_bitmap bitmap,
204 extern void ext2fs_mark_block_bitmap_range2(ext2fs_block_bitmap bitmap,
206 extern void ext2fs_unmark_block_bitmap_range2(ext2fs_block_bitmap bitmap,
208 extern errcode_t ext2fs_find_first_zero_generic_bmap(ext2fs_generic_bitmap bitmap,
211 extern errcode_t ext2fs_find_first_set_generic_bmap(ext2fs_generic_bitmap bitmap,
391 _INLINE_ int ext2fs_mark_block_bitmap(ext2fs_block_bitmap bitmap,
394 return ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap,
398 _INLINE_ int ext2fs_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
401 return ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap,
405 _INLINE_ int ext2fs_test_block_bitmap(ext2fs_block_bitmap bitmap,
408 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap,
412 _INLINE_ int ext2fs_mark_inode_bitmap(ext2fs_inode_bitmap bitmap,
415 return ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap,
419 _INLINE_ int ext2fs_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
422 return ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap,
426 _INLINE_ int ext2fs_test_inode_bitmap(ext2fs_inode_bitmap bitmap,
429 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap,
433 _INLINE_ void ext2fs_fast_mark_block_bitmap(ext2fs_block_bitmap bitmap,
436 ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap, block);
439 _INLINE_ void ext2fs_fast_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
442 ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap, block);
445 _INLINE_ int ext2fs_fast_test_block_bitmap(ext2fs_block_bitmap bitmap,
448 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap,
452 _INLINE_ void ext2fs_fast_mark_inode_bitmap(ext2fs_inode_bitmap bitmap,
455 ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap, inode);
458 _INLINE_ void ext2fs_fast_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
461 ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap, inode);
464 _INLINE_ int ext2fs_fast_test_inode_bitmap(ext2fs_inode_bitmap bitmap,
467 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap,
471 _INLINE_ blk_t ext2fs_get_block_bitmap_start(ext2fs_block_bitmap bitmap)
473 return ext2fs_get_generic_bitmap_start((ext2fs_generic_bitmap) bitmap);
476 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_start(ext2fs_inode_bitmap bitmap)
478 return ext2fs_get_generic_bitmap_start((ext2fs_generic_bitmap) bitmap);
481 _INLINE_ blk_t ext2fs_get_block_bitmap_end(ext2fs_block_bitmap bitmap)
483 return ext2fs_get_generic_bitmap_end((ext2fs_generic_bitmap) bitmap);
486 bitmap)
488 return ext2fs_get_generic_bitmap_end((ext2fs_generic_bitmap) bitmap);
491 _INLINE_ int ext2fs_fast_test_block_bitmap_range(ext2fs_block_bitmap bitmap,
494 return ext2fs_test_block_bitmap_range(bitmap, block, num);
497 _INLINE_ void ext2fs_fast_mark_block_bitmap_range(ext2fs_block_bitmap bitmap,
500 ext2fs_mark_block_bitmap_range(bitmap, block, num);
503 _INLINE_ void ext2fs_fast_unmark_block_bitmap_range(ext2fs_block_bitmap bitmap,
506 ext2fs_unmark_block_bitmap_range(bitmap, block, num);
511 _INLINE_ int ext2fs_mark_block_bitmap2(ext2fs_block_bitmap bitmap,
514 return ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap,
518 _INLINE_ int ext2fs_unmark_block_bitmap2(ext2fs_block_bitmap bitmap,
521 return ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, block);
524 _INLINE_ int ext2fs_test_block_bitmap2(ext2fs_block_bitmap bitmap,
527 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap,
531 _INLINE_ int ext2fs_mark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
534 return ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap,
538 _INLINE_ int ext2fs_unmark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
541 return ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap,
545 _INLINE_ int ext2fs_test_inode_bitmap2(ext2fs_inode_bitmap bitmap,
548 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap,
552 _INLINE_ void ext2fs_fast_mark_block_bitmap2(ext2fs_block_bitmap bitmap,
555 ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap, block);
558 _INLINE_ void ext2fs_fast_unmark_block_bitmap2(ext2fs_block_bitmap bitmap,
561 ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, block);
564 _INLINE_ int ext2fs_fast_test_block_bitmap2(ext2fs_block_bitmap bitmap,
567 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap,
571 _INLINE_ void ext2fs_fast_mark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
574 ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap, inode);
577 _INLINE_ void ext2fs_fast_unmark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
580 ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, inode);
583 _INLINE_ int ext2fs_fast_test_inode_bitmap2(ext2fs_inode_bitmap bitmap,
586 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap,
590 _INLINE_ errcode_t ext2fs_find_first_zero_block_bitmap2(ext2fs_block_bitmap bitmap,
598 rv = ext2fs_find_first_zero_generic_bmap((ext2fs_generic_bitmap) bitmap,
605 _INLINE_ errcode_t ext2fs_find_first_zero_inode_bitmap2(ext2fs_inode_bitmap bitmap,
613 rv = ext2fs_find_first_zero_generic_bmap((ext2fs_generic_bitmap) bitmap,
620 _INLINE_ errcode_t ext2fs_find_first_set_block_bitmap2(ext2fs_block_bitmap bitmap,
628 rv = ext2fs_find_first_set_generic_bmap((ext2fs_generic_bitmap) bitmap,
635 _INLINE_ errcode_t ext2fs_find_first_set_inode_bitmap2(ext2fs_inode_bitmap bitmap,
643 rv = ext2fs_find_first_set_generic_bmap((ext2fs_generic_bitmap) bitmap,
650 _INLINE_ blk64_t ext2fs_get_block_bitmap_start2(ext2fs_block_bitmap bitmap)
652 return ext2fs_get_generic_bmap_start((ext2fs_generic_bitmap) bitmap);
655 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_start2(ext2fs_inode_bitmap bitmap)
657 return (ext2_ino_t) ext2fs_get_generic_bmap_start((ext2fs_generic_bitmap) bitmap);
660 _INLINE_ blk64_t ext2fs_get_block_bitmap_end2(ext2fs_block_bitmap bitmap)
662 return ext2fs_get_generic_bmap_end((ext2fs_generic_bitmap) bitmap);
665 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_end2(ext2fs_inode_bitmap bitmap)
667 return (ext2_ino_t) ext2fs_get_generic_bmap_end((ext2fs_generic_bitmap) bitmap);
670 _INLINE_ int ext2fs_fast_test_block_bitmap_range2(ext2fs_block_bitmap bitmap,
674 return ext2fs_test_block_bitmap_range2(bitmap, block, num);
677 _INLINE_ void ext2fs_fast_mark_block_bitmap_range2(ext2fs_block_bitmap bitmap,
681 ext2fs_mark_block_bitmap_range2(bitmap, block, num);
684 _INLINE_ void ext2fs_fast_unmark_block_bitmap_range2(ext2fs_block_bitmap bitmap,
688 ext2fs_unmark_block_bitmap_range2(bitmap, block, num);