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