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

/xnu-2422.115.4/bsd/hfs/hfscommon/Misc/
H A DVolumeAllocation.c2267 u_int32_t firstBit; // Bit index within word of first bit to allocate local
2331 firstBit = startingBlock % kBitsPerWord;
2332 if (firstBit != 0) {
2333 bitMask = kAllBitsSetInWord >> firstBit; // turn off all bits before firstBit
2334 numBits = kBitsPerWord - firstBit; // number of remaining bits in this word
2337 bitMask &= ~(kAllBitsSetInWord >> (firstBit + numBits)); // turn off bits after last
3282 u_int32_t firstBit; // Bit index within word of first bit to allocate local
3318 firstBit = startingBlock % kBitsPerWord;
3319 if (firstBit !
4576 u_int32_t firstBit; // Bit index within word of first bit to allocate local
[all...]

Completed in 75 milliseconds