This topic has not yet been rated - Rate this topic

_mm_ucomilt_ss

Microsoft Specific

Compares the lower single-precision, floating-point value of a and b for a less than b.


int _mm_ucomilt_ss(__m128 a,__m128 b);
UCOMISS

If a is less than b , 1 is returned. Otherwise, 0 is returned. If a or b is a NaN, 1 is returned.

r := (a0 < b0) ? 0x1 : 0x0

Header: mmintrin.h

END Microsoft Specific

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.