_mm_broadcastw_epi16
Classification
AVX_ALL, Swizzle, CPUID Test: AVX2
Header File
immintrin.h
Instruction
VPBROADCASTW xmm, xmm
Synopsis
 _mm_broadcastw_epi16(__m128i a);
Description
Broadcast the low packed 16-bit integer from "a" to all elements of "dst".
Operation
FOR j := 0 to 7
	i := j*16
	dst[i+15:i] := a[15:0]
ENDFOR
dst[MAX:128] := 0