_mm_abs_epi16
Classification
SSE_ALL, Special Math Functions, CPUID Test: SSSE3
Header File
tmmintrin.h
Instruction
PABSW xmm, xmm
Synopsis
 _mm_abs_epi16(__m128i 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 7
	i := j*16
	dst[i+15:i] := ABS(a[i+15:i])
ENDFOR