_mm_set1_pi16
Classification
MMX, Set, CPUID Test: MMX
Header File
mmintrin.h
Synopsis
 _mm_set1_pi16(short a);
Description
Broadcast 16-bit integer "a" to all all elements of "dst".
Operation
FOR j := 0 to 3
	i := j*16
	dst[i+15:i] := a[15:0]
ENDFOR