_mm_cvtepu8_epi64
Classification
SSE_ALL, Convert, CPUID Test: SSE4.1
Header File
smmintrin.h
Instruction
PMOVZXBQ xmm, xmm
Synopsis
 _mm_cvtepu8_epi64(__m128i a);
Description
Zero extend packed unsigned 8-bit integers in the low 8 byte sof "a" to packed 64-bit integers, and store the results in "dst".
Operation
FOR j := 0 to 1
	i := 64*j
	k := 8*j
	dst[i+63:i] := ZeroExtend64(a[k+7:k])
ENDFOR