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