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

/macosx-10.10.1/ntfs-84/kext/
H A Dntfs_bitmap.h47 const s64 start_bit, const s64 count, const u8 value,
53 * @start_bit: first bit to set
57 * Set @count bits starting at bit @start_bit in the bitmap described by the
65 const s64 start_bit, const s64 count, const u8 value)
67 return __ntfs_bitmap_set_bits_in_run(ni, start_bit, count, value,
74 * @start_bit: first bit to set
77 * Set @count bits starting at bit @start_bit in the bitmap described by the
84 static inline errno_t ntfs_bitmap_set_run(ntfs_inode *ni, const s64 start_bit, argument
87 return ntfs_bitmap_set_bits_in_run(ni, start_bit, count, 1);
93 * @start_bit
64 ntfs_bitmap_set_bits_in_run(ntfs_inode *ni, const s64 start_bit, const s64 count, const u8 value) argument
103 ntfs_bitmap_clear_run(ntfs_inode *ni, const s64 start_bit, const s64 count) argument
[all...]
H A Dntfs_bitmap.c54 * @start_bit: first bit to set
59 * Set @count bits starting at bit @start_bit in the bitmap described by the
69 errno_t __ntfs_bitmap_set_bits_in_run(ntfs_inode *ni, const s64 start_bit, argument
83 ntfs_debug("Entering for mft_no 0x%llx, start_bit 0x%llx, count "
85 (unsigned long long)start_bit, (unsigned long long)cnt,
87 if (start_bit < 0)
88 panic("%s(): start_bit < 0\n", __FUNCTION__);
95 * bits, i.e. @start_bit and @start_bit + @cnt - 1, respectively.
97 ofs = (start_bit >>
[all...]
/macosx-10.10.1/libauto-186/
H A DSubzone.h89 A quantum with start_bit set indicates the beginning of a block, which may be either allocated or free.
99 start_bit = 0x1 << start_bit_log2, // indicates beginning of block enumerator in enum:Auto::Subzone::__anon9167
450 inline bool is_free(usword_t q) const { return (_side_data[q] & ~start_bit) == 0; }
452 inline bool is_start(usword_t q) const { return (_side_data[q] & start_bit) != 0 && !is_free(q); }
453 inline bool block_is_start(usword_t q) const { return q < allocation_limit() && (_side_data[q] & start_bit) != 0 && !is_free(q); }
462 if (q == allocation_limit()-1 || (_side_data[q+1] & start_bit))
504 inline bool is_thread_local(usword_t q) const { return (_side_data[q] & (start_bit|alloc_local_bit|global_bit)) == (start_bit|alloc_local_bit); }
507 inline bool is_live_thread_local(usword_t q) const { return (_side_data[q] & (start_bit | alloc_local_bit | global_bit|garbage_bit)) == (start_bit|alloc_local_bi
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/vn/
H A Dshadow.c154 bitmap_set(u_char * map, uint32_t start_bit, uint32_t bit_count) argument
159 start = bitmap_offset(start_bit);
160 end = bitmap_offset(start_bit + bit_count);
212 bitmap_get(u_char * map, uint32_t start_bit, uint32_t bit_count, argument
221 start = bitmap_offset(start_bit);
222 end = bitmap_offset(start_bit + bit_count);
/macosx-10.10.1/xnu-2782.1.97/bsd/hfs/hfscommon/Misc/
H A DVolumeAllocation.c3656 uint32_t start_bit; local
3660 err = hfs_get_summary_index (hfsmp, start_blk, &start_bit);
3670 if (start_bit > end_bit) {
3671 panic ("HFS: start > end!, %d %d ", start_bit, end_bit);
3674 current_bit = start_bit;

Completed in 188 milliseconds