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

/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBitmapBlock.cpp76 uint32 startBit = start & 0x1F; local
77 uint32 remainingBits = (length + startBit) & 0x1F;
82 if (startBit + length < 32) {
85 uint32 mask = (1 << (startBit + length)) - 1;
86 mask &= ~((1 << startBit) - 1);
92 iterations = (length - 32 + startBit) >> 5;
96 if (startBit != 0) {
97 uint32 mask = ~((1 << startBit) - 1);
144 uint32 startBit = start & 0x1F; local
145 uint32 remainingBits = (length + startBit)
[all...]

Completed in 1236 milliseconds