_mm_hsubd_epi16
[Note: This document describes a pre-release version of Visual Studio 2010 SP1 and may be revised in any later version.]
Visual Studio 2010 SP1 is required.
Microsoft Specific
Generates the XOP instruction vphsubwd to perform an integer horizontal subtract of its source.
__m128i _mm_hsubd_epi16 (
__m128i src
);
Parameters
- [in] src
A 128-bit parameter that contains eight 16-bit signed integers.
Return value
A 128-bit result r that contains four 32-bit signed integers.
r[i] := src[2*i] - src[2*i+1];
Requirements
Intrinsic |
Architecture |
---|---|
_mm_hsubd_epi16 |
XOP |
Header file <intrin.h>
Remarks
For each of the four even-odd indexed pairs of 16-bit signed integer values in src, the high-order value is subtracted from the low-order value to produce a 32-bit signed integer result that is stored as the corresponding value in the destination.
The vphsubwd instruction is part of the XOP family of instructions. Before you use this intrinsic, you must ensure that the processor supports this instruction. To determine hardware support for this instruction, call the __cpuid intrinsic with InfoType = 0x80000001 and check bit 11 of CPUInfo[2] (ECX). This bit is 1 when the instruction is supported, and 0 otherwise.
Example
#include <stdio.h>
#include <intrin.h>
int main()
{
__m128i a, d;
int i;
for (i = 0; i < 8; i++) {
a.m128i_i16[i] = ((20011*i) % 32749);
}
d = _mm_hsubd_epi16(a);
for (i = 0; i < 8; i++) printf_s(" %5d", a.m128i_i16[i]);
printf_s("\n");
for (i = 0; i < 4; i++) printf_s(" %11d", d.m128i_i32[i]);
printf_s("\n");
}
0 20011 7273 27284 14546 1808 21819 9081 -20011 -20011 12738 12738
See Also
Reference
XOP Intrinsics Added for Visual Studio 2010 SP1
Change History
Date |
History |
Reason |
---|---|---|
March 2011 |
Added this content. |
SP1 feature change. |