_mm_broadcastb_epi8
Classification
Header File
Instruction
VPBROADCASTB xmm, xmm
Synopsis
_mm_broadcastb_epi8(__m128i a);
Description
Broadcast the low packed 8-bit integer from "a" to all elements of "dst".
Operation
FOR j := 0 to 15
i := j*8
dst[i+7:i] := a[7:0]
ENDFOR
dst[MAX:128] := 0