Home | History | Annotate | Download | only in BaseLib

Lines Matching refs:Count

29   This function rotates the 32-bit value Operand to the right by Count bits.

30 The high Count bits are fill with the low Count bits of Operand. The rotated
33 If Count is greater than 31, then ASSERT().
36 @param Count The number of bits to rotate right.
38 @return Operand >>> Count
45 IN UINTN Count
48 ASSERT (Count < sizeof (Operand) * 8);
49 return (Operand >> Count) | (Operand << (32 - Count));