_mm_srl_epi32
Microsoft Specific
Shifts the 4 signed or unsigned 32-bit integers in a right by count bits while shifting in zeros.
__m128i _mm_srl_epi32 (__m128i a, __m128i count);
PSRLD
Return Value
r0 := srl(a0, count)
r1 := srl(a1, count)
r2 := srl(a2, count)
r3 := srl(a3, count)
Requirements
Header: emmintrin.h
END Microsoft Specific