Lines Matching refs:start_bit
18 extern int __ntfs_bitmap_set_bits_in_run(struct inode *vi, const s64 start_bit,
24 * @start_bit: first bit to set
28 * Set @count bits starting at bit @start_bit in the bitmap described by the
34 const s64 start_bit, const s64 count, const u8 value)
36 return __ntfs_bitmap_set_bits_in_run(vi, start_bit, count, value,
43 * @start_bit: first bit to set
46 * Set @count bits starting at bit @start_bit in the bitmap described by the
51 static inline int ntfs_bitmap_set_run(struct inode *vi, const s64 start_bit,
54 return ntfs_bitmap_set_bits_in_run(vi, start_bit, count, 1);
60 * @start_bit: first bit to clear
63 * Clear @count bits starting at bit @start_bit in the bitmap described by the
68 static inline int ntfs_bitmap_clear_run(struct inode *vi, const s64 start_bit,
71 return ntfs_bitmap_set_bits_in_run(vi, start_bit, count, 0);