This topic has not yet been rated - Rate this topic

_mm_cmplt_epi8

Microsoft Specific

Compares the 16 signed 8-bit integers in a and the 16 signed 8-bit integers in b for less than.

__m128i _mm_cmplt_epi8 (__m128i a, __m128i b);
PCMPGTBr
r0 := (a0 < b0) ? 0xff : 0x0
r1 := (a1 < b1) ? 0xff : 0x0
...
r15 := (a15 < b15) ? 0xff : 0x0

Header: emmintrin.h

END Microsoft Specific

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.