Home | History | Annotate | Download | only in BaseLib

Lines Matching refs:Operand

25   value specified by Operand. If Operand is zero, then -1 is returned.

28 @param Operand The 64-bit operand to evaluate.
30 @retval 0..63 Position of the highest bit set in Operand if found.
31 @retval -1 Operand is zero.
37 IN UINT64 Operand
40 if (Operand == (UINT32)Operand) {
42 // Operand is just a 32-bit integer
44 return HighBitSet32 ((UINT32)Operand);
48 // Operand is really a 64-bit integer
51 return HighBitSet32 (((UINT32*)&Operand)[1]) + 32;
53 return HighBitSet32 ((UINT32)RShiftU64 (Operand, 32)) + 32;