_mm_cmpnle_pd

Microsoft Specific

Compares the two double-precision, floating-point values of a and b for a not less than or equal to b.

__m128d _mm_cmpnle_pd (__m128d a, __m128d b);
CMPNLEPD

Return Value

r0 := !(a0 <= b0) ? 0xffffffffffffffff : 0x0
r1 := !(a1 <= b1) ? 0xffffffffffffffff : 0x0

Requirements

Header: emmintrin.h

END Microsoft Specific

See Also

Reference

Comparisons