Searched refs:BitIndex (Results 1 – 7 of 7) sorted by relevance
39 INTN BitIndex; in LowBitSet32() local45 for (BitIndex = 0; 0 == (Operand & 1); BitIndex++, Operand >>= 1); in LowBitSet32()46 return BitIndex; in LowBitSet32()
40 INTN BitIndex; in HighBitSet32() local45 for (BitIndex = 31; (INT32)Operand > 0; BitIndex--, Operand <<= 1); in HighBitSet32()46 return BitIndex; in HighBitSet32()
40 INTN BitIndex; in LowBitSet64() local46 for (BitIndex = 0; in LowBitSet64()48 BitIndex++, Operand = RShiftU64 (Operand, 1)); in LowBitSet64()49 return BitIndex; in LowBitSet64()
44 INTN BitIndex; in LowBitSet32() local50 for (BitIndex = 0; (Operand & 1) == 0; BitIndex++, Operand >>= 1); in LowBitSet32()51 return BitIndex; in LowBitSet32()
45 INTN BitIndex; in HighBitSet32() local50 for (BitIndex = 31; (INT32)Operand > 0; BitIndex--, Operand <<= 1); in HighBitSet32()51 return BitIndex; in HighBitSet32()
44 INTN BitIndex; in LowBitSet64() local50 for (BitIndex = 0; in LowBitSet64()52 BitIndex++, Operand = RShiftU64 (Operand, 1)); in LowBitSet64()53 return BitIndex; in LowBitSet64()
153 UINTN BitIndex; in CalculateCrc16() local157 for (BitIndex = 0; BitIndex < 8; BitIndex++) { in CalculateCrc16()