Lines Matching refs:bitmap
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, in ext2fs_mark_block_bitmap() argument
394 return ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_mark_block_bitmap()
398 _INLINE_ int ext2fs_unmark_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_unmark_block_bitmap() argument
401 return ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_unmark_block_bitmap()
405 _INLINE_ int ext2fs_test_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_test_block_bitmap() argument
408 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_test_block_bitmap()
412 _INLINE_ int ext2fs_mark_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_mark_inode_bitmap() argument
415 return ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_mark_inode_bitmap()
419 _INLINE_ int ext2fs_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_unmark_inode_bitmap() argument
422 return ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_unmark_inode_bitmap()
426 _INLINE_ int ext2fs_test_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_test_inode_bitmap() argument
429 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_test_inode_bitmap()
433 _INLINE_ void ext2fs_fast_mark_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_fast_mark_block_bitmap() argument
436 ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap, block); in ext2fs_fast_mark_block_bitmap()
439 _INLINE_ void ext2fs_fast_unmark_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_fast_unmark_block_bitmap() argument
442 ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap, block); in ext2fs_fast_unmark_block_bitmap()
445 _INLINE_ int ext2fs_fast_test_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_fast_test_block_bitmap() argument
448 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_fast_test_block_bitmap()
452 _INLINE_ void ext2fs_fast_mark_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_fast_mark_inode_bitmap() argument
455 ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap, inode); in ext2fs_fast_mark_inode_bitmap()
458 _INLINE_ void ext2fs_fast_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_fast_unmark_inode_bitmap() argument
461 ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap, inode); in ext2fs_fast_unmark_inode_bitmap()
464 _INLINE_ int ext2fs_fast_test_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_fast_test_inode_bitmap() argument
467 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_fast_test_inode_bitmap()
471 _INLINE_ blk_t ext2fs_get_block_bitmap_start(ext2fs_block_bitmap bitmap) in ext2fs_get_block_bitmap_start() argument
473 return ext2fs_get_generic_bitmap_start((ext2fs_generic_bitmap) bitmap); in ext2fs_get_block_bitmap_start()
476 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_start(ext2fs_inode_bitmap bitmap) in ext2fs_get_inode_bitmap_start() argument
478 return ext2fs_get_generic_bitmap_start((ext2fs_generic_bitmap) bitmap); in ext2fs_get_inode_bitmap_start()
481 _INLINE_ blk_t ext2fs_get_block_bitmap_end(ext2fs_block_bitmap bitmap) in ext2fs_get_block_bitmap_end() argument
483 return ext2fs_get_generic_bitmap_end((ext2fs_generic_bitmap) bitmap); in ext2fs_get_block_bitmap_end()
486 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_end(ext2fs_inode_bitmap bitmap) in ext2fs_get_inode_bitmap_end() argument
488 return ext2fs_get_generic_bitmap_end((ext2fs_generic_bitmap) bitmap); in ext2fs_get_inode_bitmap_end()
491 _INLINE_ int ext2fs_fast_test_block_bitmap_range(ext2fs_block_bitmap bitmap, in ext2fs_fast_test_block_bitmap_range() argument
494 return ext2fs_test_block_bitmap_range(bitmap, block, num); in ext2fs_fast_test_block_bitmap_range()
497 _INLINE_ void ext2fs_fast_mark_block_bitmap_range(ext2fs_block_bitmap bitmap, in ext2fs_fast_mark_block_bitmap_range() argument
500 ext2fs_mark_block_bitmap_range(bitmap, block, num); in ext2fs_fast_mark_block_bitmap_range()
503 _INLINE_ void ext2fs_fast_unmark_block_bitmap_range(ext2fs_block_bitmap bitmap, in ext2fs_fast_unmark_block_bitmap_range() argument
506 ext2fs_unmark_block_bitmap_range(bitmap, block, num); in ext2fs_fast_unmark_block_bitmap_range()
511 _INLINE_ int ext2fs_mark_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_mark_block_bitmap2() argument
514 return ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_mark_block_bitmap2()
518 _INLINE_ int ext2fs_unmark_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_unmark_block_bitmap2() argument
521 return ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, block); in ext2fs_unmark_block_bitmap2()
524 _INLINE_ int ext2fs_test_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_test_block_bitmap2() argument
527 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_test_block_bitmap2()
531 _INLINE_ int ext2fs_mark_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_mark_inode_bitmap2() argument
534 return ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_mark_inode_bitmap2()
538 _INLINE_ int ext2fs_unmark_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_unmark_inode_bitmap2() argument
541 return ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_unmark_inode_bitmap2()
545 _INLINE_ int ext2fs_test_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_test_inode_bitmap2() argument
548 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_test_inode_bitmap2()
552 _INLINE_ void ext2fs_fast_mark_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_fast_mark_block_bitmap2() argument
555 ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap, block); in ext2fs_fast_mark_block_bitmap2()
558 _INLINE_ void ext2fs_fast_unmark_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_fast_unmark_block_bitmap2() argument
561 ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, block); in ext2fs_fast_unmark_block_bitmap2()
564 _INLINE_ int ext2fs_fast_test_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_fast_test_block_bitmap2() argument
567 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_fast_test_block_bitmap2()
571 _INLINE_ void ext2fs_fast_mark_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_fast_mark_inode_bitmap2() argument
574 ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap, inode); in ext2fs_fast_mark_inode_bitmap2()
577 _INLINE_ void ext2fs_fast_unmark_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_fast_unmark_inode_bitmap2() argument
580 ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, inode); in ext2fs_fast_unmark_inode_bitmap2()
583 _INLINE_ int ext2fs_fast_test_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_fast_test_inode_bitmap2() argument
586 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_fast_test_inode_bitmap2()
590 _INLINE_ errcode_t ext2fs_find_first_zero_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_find_first_zero_block_bitmap2() argument
598 rv = ext2fs_find_first_zero_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_find_first_zero_block_bitmap2()
605 _INLINE_ errcode_t ext2fs_find_first_zero_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_find_first_zero_inode_bitmap2() argument
613 rv = ext2fs_find_first_zero_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_find_first_zero_inode_bitmap2()
620 _INLINE_ errcode_t ext2fs_find_first_set_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_find_first_set_block_bitmap2() argument
628 rv = ext2fs_find_first_set_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_find_first_set_block_bitmap2()
635 _INLINE_ errcode_t ext2fs_find_first_set_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_find_first_set_inode_bitmap2() argument
643 rv = ext2fs_find_first_set_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_find_first_set_inode_bitmap2()
650 _INLINE_ blk64_t ext2fs_get_block_bitmap_start2(ext2fs_block_bitmap bitmap) in ext2fs_get_block_bitmap_start2() argument
652 return ext2fs_get_generic_bmap_start((ext2fs_generic_bitmap) bitmap); in ext2fs_get_block_bitmap_start2()
655 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_start2(ext2fs_inode_bitmap bitmap) in ext2fs_get_inode_bitmap_start2() argument
657 return (ext2_ino_t) ext2fs_get_generic_bmap_start((ext2fs_generic_bitmap) bitmap); in ext2fs_get_inode_bitmap_start2()
660 _INLINE_ blk64_t ext2fs_get_block_bitmap_end2(ext2fs_block_bitmap bitmap) in ext2fs_get_block_bitmap_end2() argument
662 return ext2fs_get_generic_bmap_end((ext2fs_generic_bitmap) bitmap); in ext2fs_get_block_bitmap_end2()
665 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_end2(ext2fs_inode_bitmap bitmap) in ext2fs_get_inode_bitmap_end2() argument
667 return (ext2_ino_t) ext2fs_get_generic_bmap_end((ext2fs_generic_bitmap) bitmap); in ext2fs_get_inode_bitmap_end2()
670 _INLINE_ int ext2fs_fast_test_block_bitmap_range2(ext2fs_block_bitmap bitmap, in ext2fs_fast_test_block_bitmap_range2() argument
674 return ext2fs_test_block_bitmap_range2(bitmap, block, num); in ext2fs_fast_test_block_bitmap_range2()
677 _INLINE_ void ext2fs_fast_mark_block_bitmap_range2(ext2fs_block_bitmap bitmap, in ext2fs_fast_mark_block_bitmap_range2() argument
681 ext2fs_mark_block_bitmap_range2(bitmap, block, num); in ext2fs_fast_mark_block_bitmap_range2()
684 _INLINE_ void ext2fs_fast_unmark_block_bitmap_range2(ext2fs_block_bitmap bitmap, in ext2fs_fast_unmark_block_bitmap_range2() argument
688 ext2fs_unmark_block_bitmap_range2(bitmap, block, num); in ext2fs_fast_unmark_block_bitmap_range2()