_mm_abs_pi32
Classification
SSE_ALL, Special Math Functions, CPUID Test: SSSE3
Header File
tmmintrin.h
Instruction
PABSD mm, mm
Synopsis
 _mm_abs_pi32(__m64 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 1
	i := j*32
	dst[i+31:i] := ABS(a[i+31:i])
ENDFOR