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