TianoCore EDK2
master
Loading...
Searching...
No Matches
LRotU32.c
Go to the documentation of this file.
1
9
#include "
BaseLibInternals.h
"
10
27
UINT32
28
EFIAPI
29
LRotU32
(
30
IN
UINT32 Operand,
31
IN
UINTN
Count
32
)
33
{
34
ASSERT (Count < 32);
35
return
(Operand << Count) | (Operand >> (32 - Count));
36
}
UINTN
UINT64 UINTN
Definition:
ProcessorBind.h:112
BaseLibInternals.h
LRotU32
UINT32 EFIAPI LRotU32(IN UINT32 Operand, IN UINTN Count)
Definition:
LRotU32.c:29
IN
#define IN
Definition:
Base.h:279
MdePkg
Library
BaseLib
LRotU32.c
Generated on Fri Nov 15 2024 18:01:17 for TianoCore EDK2 by
1.9.6