TianoCore EDK2 master
Loading...
Searching...
No Matches
DivS64x64Remainder.c
Go to the documentation of this file.
1
9#include "BaseLibInternals.h"
10
34INT64
35EFIAPI
37 IN INT64 Dividend,
38 IN INT64 Divisor,
39 OUT INT64 *Remainder OPTIONAL
40 )
41{
42 ASSERT (Divisor != 0);
43 return InternalMathDivRemS64x64 (Dividend, Divisor, Remainder);
44}
INT64 EFIAPI InternalMathDivRemS64x64(IN INT64 Dividend, IN INT64 Divisor, OUT INT64 *Remainder OPTIONAL)
INT64 EFIAPI DivS64x64Remainder(IN INT64 Dividend, IN INT64 Divisor, OUT INT64 *Remainder OPTIONAL)
#define IN
Definition: Base.h:279
#define OUT
Definition: Base.h:284