_mm_sll_epi16
Microsoft Specific
Shifts the 8 signed or unsigned 16-bit integers in a left by count bits while shifting in zeros.
__m128i _mm_sll_epi16 (__m128i a, __m128i count);
PSLLW
Return Value
r0 := a0 << count
r1 := a1 << count
...
r7 := a7 << count
Requirements
Header: emmintrin.h
END Microsoft Specific