TianoCore EDK2 master
Loading...
Searching...
No Matches
DivS64x64Remainder.c File Reference
#include "BaseLibInternals.h"

Go to the source code of this file.

Functions

INT64 EFIAPI InternalMathDivRemS64x64 (IN INT64 Dividend, IN INT64 Divisor, OUT INT64 *Remainder OPTIONAL)
 

Detailed Description

Integer division worker functions for Ia32.

Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent

Definition in file DivS64x64Remainder.c.

Function Documentation

◆ InternalMathDivRemS64x64()

INT64 EFIAPI InternalMathDivRemS64x64 ( IN INT64  Dividend,
IN INT64  Divisor,
OUT INT64 *Remainder  OPTIONAL 
)

Worker function that Divides a 64-bit signed integer by a 64-bit signed integer and generates a 64-bit signed result and a optional 64-bit signed remainder.

This function divides the 64-bit signed value Dividend by the 64-bit signed value Divisor and generates a 64-bit signed quotient. If Remainder is not NULL, then the 64-bit signed remainder is returned in Remainder. This function returns the 64-bit signed quotient.

Parameters
DividendA 64-bit signed value.
DivisorA 64-bit signed value.
RemainderA pointer to a 64-bit signed value. This parameter is optional and may be NULL.
Returns
Dividend / Divisor

Definition at line 30 of file DivS64x64Remainder.c.