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 32-bit operand to evaluate.
30 @retval 0..31 Position of the highest bit set in Operand if found.
31 @retval -1 Operand is zero.
37 IN UINT32 Operand
42 if (Operand == 0) {
45 for (BitIndex = 31; (INT32)Operand > 0; BitIndex--, Operand <<= 1);