_mm_min_epi16
Microsoft Specific
Computes the pairwise minima of the 8 signed 16-bit integers from a and the 8 signed 16-bit integers from b.
__m128i _mm_min_epi16 (__m128i a, __m128i b);
PMINSW
Return Value
r0 := min(a0, b0)
r1 := min(a1, b1)
...
r7 := min(a7, b7)
Requirements
Header: emmintrin.h
END Microsoft Specific