TianoCore EDK2 master
Loading...
Searching...
No Matches
RRotU32.c
Go to the documentation of this file.
1
9#include "BaseLibInternals.h"
10
27UINT32
28EFIAPI
30 IN UINT32 Operand,
31 IN UINTN Count
32 )
33{
34 ASSERT (Count < 32);
35 return (Operand >> Count) | (Operand << (32 - Count));
36}
UINT64 UINTN
#define IN
Definition: Base.h:279
UINT32 EFIAPI RRotU32(IN UINT32 Operand, IN UINTN Count)
Definition: RRotU32.c:29