Lines Matching defs:na
103 extern int ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count);
104 extern int ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count);
108 * @na: attribute containing the bitmap
111 * Set the @bit in the bitmap described by the attribute @na.
115 static __inline__ int ntfs_bitmap_set_bit(ntfs_attr *na, s64 bit)
117 return ntfs_bitmap_set_run(na, bit, 1);
122 * @na: attribute containing the bitmap
125 * Clear @bit in the bitmap described by the attribute @na.
129 static __inline__ int ntfs_bitmap_clear_bit(ntfs_attr *na, s64 bit)
131 return ntfs_bitmap_clear_run(na, bit, 1);