Lines Matching refs:vi
18 extern int __ntfs_bitmap_set_bits_in_run(struct inode *vi, const s64 start_bit,
23 * @vi: vfs inode describing the bitmap
29 * vfs inode @vi to @value, where @value is either 0 or 1.
33 static inline int ntfs_bitmap_set_bits_in_run(struct inode *vi,
36 return __ntfs_bitmap_set_bits_in_run(vi, start_bit, count, value,
42 * @vi: vfs inode describing the bitmap
47 * vfs inode @vi.
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);
59 * @vi: vfs inode describing the bitmap
64 * vfs inode @vi.
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);
76 * @vi: vfs inode describing the bitmap
79 * Set bit @bit in the bitmap described by the vfs inode @vi.
83 static inline int ntfs_bitmap_set_bit(struct inode *vi, const s64 bit)
85 return ntfs_bitmap_set_run(vi, bit, 1);
90 * @vi: vfs inode describing the bitmap
93 * Clear bit @bit in the bitmap described by the vfs inode @vi.
97 static inline int ntfs_bitmap_clear_bit(struct inode *vi, const s64 bit)
99 return ntfs_bitmap_clear_run(vi, bit, 1);