Lines Matching defs:count
19 const s64 count, const u8 value, const bool is_rollback);
25 * @count: number of bits 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,
44 * @count: number of bits to set
46 * Set @count bits starting at bit @start_bit in the bitmap described by the
52 const s64 count)
54 return ntfs_bitmap_set_bits_in_run(vi, start_bit, count, 1);
61 * @count: number of bits to clear
63 * Clear @count bits starting at bit @start_bit in the bitmap described by the
69 const s64 count)
71 return ntfs_bitmap_set_bits_in_run(vi, start_bit, count, 0);