Lines Matching defs:na
42 extern int ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count);
43 extern int ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count);
47 * @na: attribute containing the bitmap
50 * Set the @bit in the bitmap described by the attribute @na.
54 static __inline__ int ntfs_bitmap_set_bit(ntfs_attr *na, s64 bit)
56 return ntfs_bitmap_set_run(na, bit, 1);
61 * @na: attribute containing the bitmap
64 * Clear @bit in the bitmap described by the attribute @na.
68 static __inline__ int ntfs_bitmap_clear_bit(ntfs_attr *na, s64 bit)
70 return ntfs_bitmap_clear_run(na, bit, 1);