mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
63 lines
1.7 KiB
C
63 lines
1.7 KiB
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: dll/win32/kernel32/misc/muldiv.c
|
|
* PURPOSE:
|
|
* PROGRAMMER: Casper S. Hornstrup
|
|
* Gunnar Andre Dalsnes
|
|
* UPDATE HISTORY:
|
|
* Created 06/12/2002
|
|
*/
|
|
|
|
#include <k32.h>
|
|
|
|
|
|
/***********************************************************************
|
|
* MulDiv (KERNEL32.@)
|
|
* RETURNS
|
|
* Result of multiplication and division
|
|
* -1: Overflow occurred or Divisor was 0
|
|
* FIXME! move to correct file
|
|
*
|
|
* @implemented
|
|
*/
|
|
INT
|
|
WINAPI
|
|
MulDiv(INT nNumber,
|
|
INT nNumerator,
|
|
INT nDenominator)
|
|
{
|
|
LARGE_INTEGER Result;
|
|
LONG Negative;
|
|
|
|
/* Find out if this will be a negative result */
|
|
Negative = nNumber ^ nNumerator ^ nDenominator;
|
|
|
|
/* Turn all the parameters into absolute values */
|
|
if (nNumber < 0) nNumber *= -1;
|
|
if (nNumerator < 0) nNumerator *= -1;
|
|
if (nDenominator < 0) nDenominator *= -1;
|
|
|
|
/* Calculate the result */
|
|
Result.QuadPart = Int32x32To64(nNumber, nNumerator) + (nDenominator / 2);
|
|
|
|
/* Now check for overflow */
|
|
if (nDenominator > Result.HighPart)
|
|
{
|
|
/* Divide the product to get the quotient and remainder */
|
|
Result.LowPart = RtlEnlargedUnsignedDivide(*(PULARGE_INTEGER)&Result,
|
|
(ULONG)nDenominator,
|
|
(PULONG)&Result.HighPart);
|
|
|
|
/* Do the sign changes */
|
|
if ((LONG)Result.LowPart >= 0)
|
|
{
|
|
return (Negative >= 0) ? (LONG)Result.LowPart : -(LONG)Result.LowPart;
|
|
}
|
|
}
|
|
|
|
/* Return overflow */
|
|
return - 1;
|
|
}
|
|
|