]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/DivS64x64Remainder.c
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / EdkIIGlueLib / Library / BaseLib / DivS64x64Remainder.c
1 /*++
2
3 Copyright (c) 2004 - 2006, Intel Corporation. All rights reserved.<BR>
4 This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12
13 Module Name:
14
15 DivS64x64Remainder.c
16
17 Abstract:
18
19 Math worker functions.
20
21 --*/
22
23 #include "BaseLibInternals.h"
24
25 /**
26 Divides a 64-bit signed integer by a 64-bit signed integer and generates a
27 64-bit signed result and a optional 64-bit signed remainder.
28
29 This function divides the 64-bit signed value Dividend by the 64-bit signed
30 value Divisor and generates a 64-bit signed quotient. If Remainder is not
31 NULL, then the 64-bit signed remainder is returned in Remainder. This
32 function returns the 64-bit signed quotient.
33
34 If Divisor is 0, then ASSERT().
35
36 @param Dividend A 64-bit signed value.
37 @param Divisor A 64-bit signed value.
38 @param Remainder A pointer to a 64-bit signed value. This parameter is
39 optional and may be NULL.
40
41 @return Dividend / Divisor
42
43 **/
44 INT64
45 EFIAPI
46 DivS64x64Remainder (
47 IN INT64 Dividend,
48 IN INT64 Divisor,
49 OUT INT64 *Remainder OPTIONAL
50 )
51 {
52 ASSERT (Divisor != 0);
53 return InternalMathDivRemS64x64 (Dividend, Divisor, Remainder);
54 }