_mm_broadcastss_ps
Classification
Header File
Instruction
VBROADCASTSS xmm, xmm
Synopsis
_mm_broadcastss_ps(__m128 a);
Description
Broadcast the low single-precision (32-bit) floating-point element 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