_mm_srli_epi16

Microsoft Specific

Shifts the 8 signed or unsigned 16-bit integers in a right by count bits while shifting in zeros.

__m128i _mm_srli_epi16 (__m128i a, int count);
PSRLW

Return Value

r0 := srl(a0, count)
r1 := srl(a1, count)
...
r7 := srl(a7, count)

Requirements

Header: emmintrin.h

END Microsoft Specific

See Also

Reference

Shift Operations