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