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