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