_mm_adds_epu8

Microsoft Specific

Adds the 16 unsigned 8-bit integers in a to the 16 unsigned 8-bit integers in b and saturates.

__m128i _mm_adds_epu8 (__m128i a, __m128i b);
PADDUSB

Return Value

r0 := UnsignedSaturate(a0 + b0)
r1 := UnsignedSaturate(a1 + b1)
...
r15 := UnsignedSaturate(a15 + b15)

Requirements

Header: emmintrin.h

END Microsoft Specific

See Also

Reference

Arithmetic Operations (Integer SSE2 Intrinsics)