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