_mm256_set1_epi8
Classification
Header File
Synopsis
_mm256_set1_epi8(char a);
Description
Broadcast 8-bit integer "a" to all elements of "dst". This intrinsic may generate the "vpbroadcastb".
Operation
FOR j := 0 to 31
i := j*8
dst[i+7:i] := a[7:0]
ENDFOR
dst[MAX:256] := 0