_movn_ps
This function tests the contents of a register to determine if it is not zero. If it is not zero, then the value is moved to another register. If it is zero, no action occurs.
double __cdecl _movz_ps(
double,
int
);
Parameters
- double
[in] The value to moved if int is not zero. - int
[in] The value that is tested to determine if it is not zero.
Return Values
If int is not zero, the result is the value of the contents of double. If not, then the result is the same value held in the register before this function call.
Remarks
The compiler translates this function into the MOVN.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.