Partager via


_nmadd_vu

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

double __cdecl _nmadd_vu(
  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 vector.
  • arg3
    [in] The value of the upper half of the second operand in the product.

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.