Searched refs:start_bit (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dbitmap.c50 * @start_bit: first bit to set
54 * Set @count bits starting at bit @start_bit in the bitmap described by the
59 static int ntfs_bitmap_set_bits_in_run(ntfs_attr *na, s64 start_bit, argument
67 if (!na || start_bit < 0 || count < 0) {
72 bit = start_bit & 7;
93 br = ntfs_attr_pread(na, start_bit >> 3, 1, buf);
106 /* Update @start_bit to the new position. */
107 start_bit = (start_bit + 7) & ~7;
130 br = ntfs_attr_pread(na, (start_bit
226 ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count) argument
242 ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count) argument
[all...]
/osnet-11/usr/src/lib/libntfs/common/include/ntfs/
H A Dbitmap.h103 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);

Completed in 20 milliseconds