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

/macosx-10.10/AppleRAID-4.0.6/
H A DAppleRAIDUserLib.c1974 UInt64 bitsNeeded; local
1981 bitsNeeded = (availableBytes - bitMapSize) / bytesPerBit;
1982 bitsNeeded += (availableBytes - bitMapSize) % bytesPerBit ? 1 : 0;
1983 while (bitsNeeded > (bitMapSize * 8)) {
1990 bitsNeeded = (availableBytes - bitMapSize) / bytesPerBit;
1991 bitsNeeded += (availableBytes - bitMapSize) % bytesPerBit ? 1 : 0;
1998 bitsNeeded = partitionSize / bytesPerBit;
1999 bitsNeeded += partitionSize % bytesPerBit ? 1 : 0;
2000 while (bitsNeeded > (bitMapSize * 8)) {
2007 bitsNeeded
[all...]
H A DAppleLVMGroup.cpp1119 UInt32 bitsNeeded = lvNew->getEntrySize() / kAppleLVMVolumeOnDiskMinSize;
1122 IOLog1("AppleLVMGroup::findFreeLVEOffset(): bitsNeeded %u, lastBit %u\n", (uint32_t)bitsNeeded, (uint32_t)lastBit);
1132 while (bitsGap < bitsNeeded) {
1144 if (bitsGap >= bitsNeeded) return (firstBit + 1) * kAppleLVMVolumeOnDiskMinSize + secondaryStart;

Completed in 131 milliseconds