Lines Matching refs:bitmap
53 extern void ext2fs_warn_bitmap2(ext2fs_generic_bitmap bitmap,
65 extern int ext2fs_mark_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block);
66 extern int ext2fs_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
68 extern int ext2fs_test_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block);
70 extern int ext2fs_mark_inode_bitmap(ext2fs_inode_bitmap bitmap, ext2_ino_t inode);
71 extern int ext2fs_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
73 extern int ext2fs_test_inode_bitmap(ext2fs_inode_bitmap bitmap, ext2_ino_t inode);
75 extern void ext2fs_fast_mark_block_bitmap(ext2fs_block_bitmap bitmap,
77 extern void ext2fs_fast_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
79 extern int ext2fs_fast_test_block_bitmap(ext2fs_block_bitmap bitmap,
82 extern void ext2fs_fast_mark_inode_bitmap(ext2fs_inode_bitmap bitmap,
84 extern void ext2fs_fast_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
86 extern int ext2fs_fast_test_inode_bitmap(ext2fs_inode_bitmap bitmap,
88 extern blk_t ext2fs_get_block_bitmap_start(ext2fs_block_bitmap bitmap);
89 extern ext2_ino_t ext2fs_get_inode_bitmap_start(ext2fs_inode_bitmap bitmap);
90 extern blk_t ext2fs_get_block_bitmap_end(ext2fs_block_bitmap bitmap);
91 extern ext2_ino_t ext2fs_get_inode_bitmap_end(ext2fs_inode_bitmap bitmap);
93 extern void ext2fs_fast_mark_block_bitmap_range(ext2fs_block_bitmap bitmap,
95 extern void ext2fs_fast_unmark_block_bitmap_range(ext2fs_block_bitmap bitmap,
97 extern int ext2fs_fast_test_block_bitmap_range(ext2fs_block_bitmap bitmap,
102 extern void ext2fs_mark_block_bitmap_range(ext2fs_block_bitmap bitmap,
104 extern void ext2fs_unmark_block_bitmap_range(ext2fs_block_bitmap bitmap,
106 extern int ext2fs_test_block_bitmap_range(ext2fs_block_bitmap bitmap,
108 extern int ext2fs_test_inode_bitmap_range(ext2fs_inode_bitmap bitmap,
110 extern int ext2fs_mark_generic_bitmap(ext2fs_generic_bitmap bitmap,
112 extern int ext2fs_unmark_generic_bitmap(ext2fs_generic_bitmap bitmap,
114 extern int ext2fs_test_generic_bitmap(ext2fs_generic_bitmap bitmap,
116 extern int ext2fs_test_block_bitmap_range(ext2fs_block_bitmap bitmap,
119 extern __u32 ext2fs_get_generic_bitmap_start(ext2fs_generic_bitmap bitmap);
120 extern __u32 ext2fs_get_generic_bitmap_end(ext2fs_generic_bitmap bitmap);
125 extern int ext2fs_mark_block_bitmap2(ext2fs_block_bitmap bitmap,
127 extern int ext2fs_unmark_block_bitmap2(ext2fs_block_bitmap bitmap,
129 extern int ext2fs_test_block_bitmap2(ext2fs_block_bitmap bitmap,
132 extern int ext2fs_mark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
134 extern int ext2fs_unmark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
136 extern int ext2fs_test_inode_bitmap2(ext2fs_inode_bitmap bitmap,
139 extern void ext2fs_fast_mark_block_bitmap2(ext2fs_block_bitmap bitmap,
141 extern void ext2fs_fast_unmark_block_bitmap2(ext2fs_block_bitmap bitmap,
143 extern int ext2fs_fast_test_block_bitmap2(ext2fs_block_bitmap bitmap,
146 extern void ext2fs_fast_mark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
148 extern void ext2fs_fast_unmark_inode_bitmap2(ext2fs_inode_bitmap bitmap,
150 extern int ext2fs_fast_test_inode_bitmap2(ext2fs_inode_bitmap bitmap,
152 extern errcode_t ext2fs_find_first_zero_block_bitmap2(ext2fs_block_bitmap bitmap,
156 extern errcode_t ext2fs_find_first_zero_inode_bitmap2(ext2fs_inode_bitmap bitmap,
160 extern blk64_t ext2fs_get_block_bitmap_start2(ext2fs_block_bitmap bitmap);
161 extern ext2_ino_t ext2fs_get_inode_bitmap_start2(ext2fs_inode_bitmap bitmap);
162 extern blk64_t ext2fs_get_block_bitmap_end2(ext2fs_block_bitmap bitmap);
163 extern ext2_ino_t ext2fs_get_inode_bitmap_end2(ext2fs_inode_bitmap bitmap);
165 extern int ext2fs_fast_test_block_bitmap_range2(ext2fs_block_bitmap bitmap,
168 extern void ext2fs_fast_mark_block_bitmap_range2(ext2fs_block_bitmap bitmap,
171 extern void ext2fs_fast_unmark_block_bitmap_range2(ext2fs_block_bitmap bitmap,
177 extern void ext2fs_clear_generic_bmap(ext2fs_generic_bitmap bitmap);
182 extern int ext2fs_mark_generic_bmap(ext2fs_generic_bitmap bitmap,
184 extern int ext2fs_unmark_generic_bmap(ext2fs_generic_bitmap bitmap,
186 extern int ext2fs_test_generic_bmap(ext2fs_generic_bitmap bitmap,
188 extern int ext2fs_test_block_bitmap_range2(ext2fs_block_bitmap bitmap,
190 extern __u64 ext2fs_get_generic_bmap_start(ext2fs_generic_bitmap bitmap);
191 extern __u64 ext2fs_get_generic_bmap_end(ext2fs_generic_bitmap bitmap);
192 extern int ext2fs_test_block_bitmap_range2(ext2fs_block_bitmap bitmap,
194 extern void ext2fs_mark_block_bitmap_range2(ext2fs_block_bitmap bitmap,
196 extern void ext2fs_unmark_block_bitmap_range2(ext2fs_block_bitmap bitmap,
198 extern errcode_t ext2fs_find_first_zero_generic_bmap(ext2fs_generic_bitmap bitmap,
378 _INLINE_ int ext2fs_mark_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_mark_block_bitmap() argument
381 return ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_mark_block_bitmap()
385 _INLINE_ int ext2fs_unmark_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_unmark_block_bitmap() argument
388 return ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_unmark_block_bitmap()
392 _INLINE_ int ext2fs_test_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_test_block_bitmap() argument
395 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_test_block_bitmap()
399 _INLINE_ int ext2fs_mark_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_mark_inode_bitmap() argument
402 return ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_mark_inode_bitmap()
406 _INLINE_ int ext2fs_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_unmark_inode_bitmap() argument
409 return ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_unmark_inode_bitmap()
413 _INLINE_ int ext2fs_test_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_test_inode_bitmap() argument
416 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_test_inode_bitmap()
420 _INLINE_ void ext2fs_fast_mark_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_fast_mark_block_bitmap() argument
423 ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap, block); in ext2fs_fast_mark_block_bitmap()
426 _INLINE_ void ext2fs_fast_unmark_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_fast_unmark_block_bitmap() argument
429 ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap, block); in ext2fs_fast_unmark_block_bitmap()
432 _INLINE_ int ext2fs_fast_test_block_bitmap(ext2fs_block_bitmap bitmap, in ext2fs_fast_test_block_bitmap() argument
435 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_fast_test_block_bitmap()
439 _INLINE_ void ext2fs_fast_mark_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_fast_mark_inode_bitmap() argument
442 ext2fs_mark_generic_bitmap((ext2fs_generic_bitmap) bitmap, inode); in ext2fs_fast_mark_inode_bitmap()
445 _INLINE_ void ext2fs_fast_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_fast_unmark_inode_bitmap() argument
448 ext2fs_unmark_generic_bitmap((ext2fs_generic_bitmap) bitmap, inode); in ext2fs_fast_unmark_inode_bitmap()
451 _INLINE_ int ext2fs_fast_test_inode_bitmap(ext2fs_inode_bitmap bitmap, in ext2fs_fast_test_inode_bitmap() argument
454 return ext2fs_test_generic_bitmap((ext2fs_generic_bitmap) bitmap, in ext2fs_fast_test_inode_bitmap()
458 _INLINE_ blk_t ext2fs_get_block_bitmap_start(ext2fs_block_bitmap bitmap) in ext2fs_get_block_bitmap_start() argument
460 return ext2fs_get_generic_bitmap_start((ext2fs_generic_bitmap) bitmap); in ext2fs_get_block_bitmap_start()
463 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_start(ext2fs_inode_bitmap bitmap) in ext2fs_get_inode_bitmap_start() argument
465 return ext2fs_get_generic_bitmap_start((ext2fs_generic_bitmap) bitmap); in ext2fs_get_inode_bitmap_start()
468 _INLINE_ blk_t ext2fs_get_block_bitmap_end(ext2fs_block_bitmap bitmap) in ext2fs_get_block_bitmap_end() argument
470 return ext2fs_get_generic_bitmap_end((ext2fs_generic_bitmap) bitmap); in ext2fs_get_block_bitmap_end()
473 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_end(ext2fs_inode_bitmap bitmap) in ext2fs_get_inode_bitmap_end() argument
475 return ext2fs_get_generic_bitmap_end((ext2fs_generic_bitmap) bitmap); in ext2fs_get_inode_bitmap_end()
478 _INLINE_ int ext2fs_fast_test_block_bitmap_range(ext2fs_block_bitmap bitmap, in ext2fs_fast_test_block_bitmap_range() argument
481 return ext2fs_test_block_bitmap_range(bitmap, block, num); in ext2fs_fast_test_block_bitmap_range()
484 _INLINE_ void ext2fs_fast_mark_block_bitmap_range(ext2fs_block_bitmap bitmap, in ext2fs_fast_mark_block_bitmap_range() argument
487 ext2fs_mark_block_bitmap_range(bitmap, block, num); in ext2fs_fast_mark_block_bitmap_range()
490 _INLINE_ void ext2fs_fast_unmark_block_bitmap_range(ext2fs_block_bitmap bitmap, in ext2fs_fast_unmark_block_bitmap_range() argument
493 ext2fs_unmark_block_bitmap_range(bitmap, block, num); in ext2fs_fast_unmark_block_bitmap_range()
498 _INLINE_ int ext2fs_mark_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_mark_block_bitmap2() argument
501 return ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_mark_block_bitmap2()
505 _INLINE_ int ext2fs_unmark_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_unmark_block_bitmap2() argument
508 return ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, block); in ext2fs_unmark_block_bitmap2()
511 _INLINE_ int ext2fs_test_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_test_block_bitmap2() argument
514 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_test_block_bitmap2()
518 _INLINE_ int ext2fs_mark_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_mark_inode_bitmap2() argument
521 return ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_mark_inode_bitmap2()
525 _INLINE_ int ext2fs_unmark_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_unmark_inode_bitmap2() argument
528 return ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_unmark_inode_bitmap2()
532 _INLINE_ int ext2fs_test_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_test_inode_bitmap2() argument
535 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_test_inode_bitmap2()
539 _INLINE_ void ext2fs_fast_mark_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_fast_mark_block_bitmap2() argument
542 ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap, block); in ext2fs_fast_mark_block_bitmap2()
545 _INLINE_ void ext2fs_fast_unmark_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_fast_unmark_block_bitmap2() argument
548 ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, block); in ext2fs_fast_unmark_block_bitmap2()
551 _INLINE_ int ext2fs_fast_test_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_fast_test_block_bitmap2() argument
554 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_fast_test_block_bitmap2()
558 _INLINE_ void ext2fs_fast_mark_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_fast_mark_inode_bitmap2() argument
561 ext2fs_mark_generic_bmap((ext2fs_generic_bitmap) bitmap, inode); in ext2fs_fast_mark_inode_bitmap2()
564 _INLINE_ void ext2fs_fast_unmark_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_fast_unmark_inode_bitmap2() argument
567 ext2fs_unmark_generic_bmap((ext2fs_generic_bitmap) bitmap, inode); in ext2fs_fast_unmark_inode_bitmap2()
570 _INLINE_ int ext2fs_fast_test_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_fast_test_inode_bitmap2() argument
573 return ext2fs_test_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_fast_test_inode_bitmap2()
577 _INLINE_ errcode_t ext2fs_find_first_zero_block_bitmap2(ext2fs_block_bitmap bitmap, in ext2fs_find_first_zero_block_bitmap2() argument
585 rv = ext2fs_find_first_zero_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_find_first_zero_block_bitmap2()
592 _INLINE_ errcode_t ext2fs_find_first_zero_inode_bitmap2(ext2fs_inode_bitmap bitmap, in ext2fs_find_first_zero_inode_bitmap2() argument
600 rv = ext2fs_find_first_zero_generic_bmap((ext2fs_generic_bitmap) bitmap, in ext2fs_find_first_zero_inode_bitmap2()
607 _INLINE_ blk64_t ext2fs_get_block_bitmap_start2(ext2fs_block_bitmap bitmap) in ext2fs_get_block_bitmap_start2() argument
609 return ext2fs_get_generic_bmap_start((ext2fs_generic_bitmap) bitmap); in ext2fs_get_block_bitmap_start2()
612 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_start2(ext2fs_inode_bitmap bitmap) in ext2fs_get_inode_bitmap_start2() argument
614 return (ext2_ino_t) ext2fs_get_generic_bmap_start((ext2fs_generic_bitmap) bitmap); in ext2fs_get_inode_bitmap_start2()
617 _INLINE_ blk64_t ext2fs_get_block_bitmap_end2(ext2fs_block_bitmap bitmap) in ext2fs_get_block_bitmap_end2() argument
619 return ext2fs_get_generic_bmap_end((ext2fs_generic_bitmap) bitmap); in ext2fs_get_block_bitmap_end2()
622 _INLINE_ ext2_ino_t ext2fs_get_inode_bitmap_end2(ext2fs_inode_bitmap bitmap) in ext2fs_get_inode_bitmap_end2() argument
624 return (ext2_ino_t) ext2fs_get_generic_bmap_end((ext2fs_generic_bitmap) bitmap); in ext2fs_get_inode_bitmap_end2()
627 _INLINE_ int ext2fs_fast_test_block_bitmap_range2(ext2fs_block_bitmap bitmap, in ext2fs_fast_test_block_bitmap_range2() argument
631 return ext2fs_test_block_bitmap_range2(bitmap, block, num); in ext2fs_fast_test_block_bitmap_range2()
634 _INLINE_ void ext2fs_fast_mark_block_bitmap_range2(ext2fs_block_bitmap bitmap, in ext2fs_fast_mark_block_bitmap_range2() argument
638 ext2fs_mark_block_bitmap_range2(bitmap, block, num); in ext2fs_fast_mark_block_bitmap_range2()
641 _INLINE_ void ext2fs_fast_unmark_block_bitmap_range2(ext2fs_block_bitmap bitmap, in ext2fs_fast_unmark_block_bitmap_range2() argument
645 ext2fs_unmark_block_bitmap_range2(bitmap, block, num); in ext2fs_fast_unmark_block_bitmap_range2()