_mm_abs_epi32
Classification
SSE_ALL, Special Math Functions, CPUID Test: SSSE3
Header File
tmmintrin.h
Instruction
PABSD xmm, xmm
Synopsis
 _mm_abs_epi32(__m128i a);
Description
Compute the absolute value of packed signed 32-bit integers in "a", and store the unsigned results in "dst".
Operation
FOR j := 0 to 3
	i := j*32
	dst[i+31:i] := ABS(a[i+31:i])
ENDFOR