Home | History | Annotate | Download | only in BaseLib

Lines Matching refs:Count

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

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