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