_mm_abs_pi16
Microsoft Specific
Emits the Supplemental Streaming SIMD Extensions 3 (SSSE3) instruction pabsw. This instruction returns the absolute value for each packed 16-bit integer of the 64-bit parameter.
__m64 _mm_abs_pi16( __m64 a );
#include <stdio.h>
#include <tmmintrin.h>
int main () {
__m64 a;
a.m64_i16[0] = 0;
a.m64_i16[1] = 0;
a.m64_i16[2] = 32767;
a.m64_i16[3] = -32767;
__m64 b = _mm_abs_pi16( a );
printf_s("Original 16 bit pairs:\n%6d, %6d\n%6d, %6d\n\n",
a.m64_i16[0], a.m64_i16[1], a.m64_i16[2], a.m64_i16[3]);
printf_s("New 16 bit pairs:\n%6d, %6d\n%6d, %6d\n",
b.m64_i16[0], b.m64_i16[1], b.m64_i16[2], b.m64_i16[3]);
_mm_empty();
return 0;
}
Original 16 bit pairs:
0, 0
32767, -32767
New 16 bit pairs:
0, 0
32767, 32767