_mm_min_epu8

Microsoft Specific

Computes the pairwise minima of the 16 unsigned 8-bit integers from a and the 16 unsigned 8-bit integers from b.

__m128i _mm_min_epu8 (__m128i a, __m128i b);
PMINUB

Return Value

r0 := min(a0, b0)
r1 := min(a1, b1)
...
r15 := min(a15, b15)

Requirements

Header: emmintrin.h

END Microsoft Specific

See Also

Reference

Arithmetic Operations (Integer SSE2 Intrinsics)