_mm_cmpgt_epi32
Microsoft Specific
Compares the 4 signed 32-bit integers in a and the 4 signed 32-bit integers in b for greater than.
__m128i _mm_cmpgt_epi32 (__m128i a, __m128i b);
PCMPGTD
Return Value
r0 := (a0 > b0) ? 0xffffffff : 0x0
r1 := (a1 > b1) ? 0xffffffff : 0x0
r2 := (a2 > b2) ? 0xffffffff : 0x0
r3 := (a3 > b3) ? 0xffffffff : 0x0
Requirements
Header: emmintrin.h
END Microsoft Specific