TianoCore EDK2 master
Loading...
Searching...
No Matches
DivU64x64Remainder.c
Go to the documentation of this file.
1
9#include "BaseLibInternals.h"
10
30UINT64
31EFIAPI
33 IN UINT64 Dividend,
34 IN UINT64 Divisor,
35 OUT UINT64 *Remainder OPTIONAL
36 )
37{
38 ASSERT (Divisor != 0);
39 return InternalMathDivRemU64x64 (Dividend, Divisor, Remainder);
40}
UINT64 EFIAPI InternalMathDivRemU64x64(IN UINT64 Dividend, IN UINT64 Divisor, OUT UINT64 *Remainder OPTIONAL)
Definition: Math64.c:320
UINT64 EFIAPI DivU64x64Remainder(IN UINT64 Dividend, IN UINT64 Divisor, OUT UINT64 *Remainder OPTIONAL)
#define IN
Definition: Base.h:279
#define OUT
Definition: Base.h:284