Share via


_nmadd_su

This function multiplies the upper half of 64-bit number times a 32-bit number, negates the 32-bit result, and adds the result to a third number.

float __cdecl _nmadd_su(
  arg1,
  arg2,
  arg3
);

Parameters

  • arg1
    [in] The value added to the negated product of arg2 and arg3.
  • arg2
    [in] The value of the upper half of the first operand in the product, a 64-bit number.
  • arg3
    [in] The value of the second operand in the product, a 32-bit number.

Return Values

The 32-bit result of the binary arithmetic.

Remarks

The compiler translates this function into the NMADD.format assembly instruction.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Mipsintr.h.

See Also

Common Intrinsic Functions | Intrinsic Functions for MIPS Microprocessors

 Last updated on Thursday, April 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.