Skip to content

Latest commit

 

History

History
72 lines (61 loc) · 1.53 KB

File metadata and controls

72 lines (61 loc) · 1.53 KB
title __m128d | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
devlang-cpp
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
__m128d
__m128d_cpp
dev_langs
C++
helpviewer_keywords
__m128d keyword [C++]
ms.assetid 8082c7c0-a955-4b53-9d82-9bb91c623f72
caps.latest.revision 8
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
ru-ru
zh-cn
zh-tw
translation.priority.mt
cs-cz
pl-pl
pt-br
tr-tr
translationtype Human Translation
ms.sourcegitcommit 3168772cbb7e8127523bc2fc2da5cc9b4f59beb8
ms.openlocfilehash a801378bfe5840a86a22e151e4697e47ec1c9b9f

__m128d

Microsoft Specific

The __m128d data type, for use with the Streaming SIMD Extensions 2 instructions intrinsics, is defined in emmintrin.h.

// data_types__m128d.cpp  
#include <emmintrin.h>  
int main() {  
   __m128d x;  
}  

Remarks

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.

The __m128d data type is not supported on ARM processors.

END Microsoft Specific

See Also

Keywords
Fundamental Types
Data Type Ranges