__m128d
Visual Studio .NET 2003
Microsoft Specific
The __m128d data type, for use with the Streaming SIMD Extensions 2 instructions intrinsics, is defined as follows:
// data_types__m128d.cpp
typedef struct __declspec(intrin_type) __declspec(align(16)) __m128d {
double m128d_f64[2];
} __m128d;
int main()
{
}
You should not access the __m128d fields directly. You can, however, see these types in the debugger. A variable of type __m128 maps to the XMM[0-7] registers.
Variables of type _m128d are automatically aligned on 16-byte boundaries.
END Microsoft Specific