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

/darwin-on-arm/xnu/bsd/hfs/hfscommon/Misc/
H A DVolumeAllocation.c2264 u_int32_t firstBit; // Bit index within word of first bit to allocate local
2309 firstBit = startingBlock % kBitsPerWord;
2310 if (firstBit != 0) {
2311 bitMask = kAllBitsSetInWord >> firstBit; // turn off all bits before firstBit
2312 numBits = kBitsPerWord - firstBit; // number of remaining bits in this word
2315 bitMask &= ~(kAllBitsSetInWord >> (firstBit + numBits)); // turn off bits after last
3588 u_int32_t firstBit; // Bit index within word of first bit to allocate local
3624 firstBit = startingBlock % kBitsPerWord;
3625 if (firstBit !
3937 u_int32_t firstBit; // Bit index within word of first bit to allocate local
[all...]

Completed in 68 milliseconds