Lines Matching defs:bit
24 * @start_bit: first bit to set
28 * Set @count bits starting at bit @start_bit in the bitmap described by the
43 * @start_bit: first bit to set
46 * Set @count bits starting at bit @start_bit in the bitmap described by the
60 * @start_bit: first bit to clear
63 * Clear @count bits starting at bit @start_bit in the bitmap described by the
75 * ntfs_bitmap_set_bit - set a bit in a bitmap
77 * @bit: bit to set
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);
89 * ntfs_bitmap_clear_bit - clear a bit in a bitmap
91 * @bit: bit to clear
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);