Home | History | Annotate | Download | only in BaseLib

Lines Matching refs:Operand

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

32 @param Operand The 32-bit operand to evaluate.
34 @return Position of the lowest bit set in Operand if found.
35 @retval -1 Operand is zero.
41 IN UINT32 Operand
46 if (Operand == 0) {
50 for (BitIndex = 0; (Operand & 1) == 0; BitIndex++, Operand >>= 1);