TianoCore EDK2 master
Loading...
Searching...
No Matches
LRotU32.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
UINT32 EFIAPI LRotU32(IN UINT32 Operand, IN UINTN Count)
Definition: LRotU32.c:29
#define IN
Definition: Base.h:279