Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Microsoft Specific
Compares the 16 signed 8-bit integers in a and the 16 signed 8-bit integers in b for greater than.
__m128i _mm_cmpgt_epi8 (__m128i a, __m128i b);
PCMPGTB
Return Value
r0 := (a0 > b0) ? 0xff : 0x0
r1 := (a1 > b1) ? 0xff : 0x0
...
r15 := (a15 > b15) ? 0xff : 0x0
Requirements
Header: emmintrin.h
END Microsoft Specific