TianoCore EDK2 master
Loading...
Searching...
No Matches
DivU64x32.c
Go to the documentation of this file.
1
9#include "BaseLibInternals.h"
10
27UINT64
28EFIAPI
30 IN UINT64 Dividend,
31 IN UINT32 Divisor
32 )
33{
34 ASSERT (Divisor != 0);
35 return InternalMathDivU64x32 (Dividend, Divisor);
36}
UINT64 EFIAPI InternalMathDivU64x32(IN UINT64 Dividend, IN UINT32 Divisor)
Definition: DivU64x32.c:25
UINT64 EFIAPI DivU64x32(IN UINT64 Dividend, IN UINT32 Divisor)
Definition: DivU64x32.c:29
#define IN
Definition: Base.h:279