_mm_movemask_epi8
Classification
SSE_ALL, Miscellaneous, CPUID Test: SSE2
Header File
emmintrin.h
Instruction
PMOVMSKB r32, xmm
Synopsis
 _mm_movemask_epi8(__m128i a);
Description
Create mask from the most significant bit of each 8-bit element in "a", and store the result in "dst".
Operation
FOR j := 0 to 15
	i := j*8
	dst[j] := a[i+7]
ENDFOR
dst[MAX:16] := 0