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