_mm_set1_epi64x
Classification
SSE_ALL, Set, CPUID Test: SSE2
Header File
emmintrin.h
Synopsis
 _mm_set1_epi64x(__int64 a);
Description
Broadcast 64-bit integer "a" to all elements of "dst". This intrinsic may generate the "vpbroadcastq".
Operation
FOR j := 0 to 1
	i := j*64
	dst[i+63:i] := a[63:0]
ENDFOR