Share via


_madd_vu

This function multiplies the upper halves of two 32-bit paired singles independently, and adds the result to the accumulator.

double __cdecl _madd_vu(
  arg1,
  arg2,
  arg3
);

Parameters

  • arg1
    [in] The value of the accumulator added to the product of arg2 and arg3.
  • arg2
    [in] The first operand of the product added to arg1.
  • arg3
    [in] The second operand of the product added to arg1.

Return Values

The result of the binary arithmetic.

Remarks

The compiler translates this function into the MADD.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.