Lines Matching full: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, in ntfs_bitmap_set_bits_in_run() argument
36 return __ntfs_bitmap_set_bits_in_run(vi, start_bit, count, value, in ntfs_bitmap_set_bits_in_run()
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, in ntfs_bitmap_set_run() argument
54 return ntfs_bitmap_set_bits_in_run(vi, start_bit, count, 1); in ntfs_bitmap_set_run()
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, in ntfs_bitmap_clear_run() argument
71 return ntfs_bitmap_set_bits_in_run(vi, start_bit, count, 0); in ntfs_bitmap_clear_run()
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) in ntfs_bitmap_set_bit() argument
85 return ntfs_bitmap_set_run(vi, bit, 1); in ntfs_bitmap_set_bit()
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) in ntfs_bitmap_clear_bit() argument
99 return ntfs_bitmap_clear_run(vi, bit, 1); in ntfs_bitmap_clear_bit()