Skip to content

Latest commit

 

History

History
63 lines (57 loc) · 1.42 KB

File metadata and controls

63 lines (57 loc) · 1.42 KB
title __m128 | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-language
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
__m128
__m128_cpp
dev_langs
C++
helpviewer_keywords
__m128 keyword [C++]
ms.assetid e51a472a-0e3c-4989-9a2a-36adb05273a3
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

__m128

Microsoft Specific

The __m128 data type, for use with the Streaming SIMD Extensions and Streaming SIMD Extensions 2 instructions intrinsics, is defined in xmmintrin.h.

// data_types__m128.cpp  
#include <xmmintrin.h>  
int main() {  
   __m128 x;  
}  

Remarks

You should not access the __m128 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 _m128 are automatically aligned on 16-byte boundaries.

The __m128 data type is not supported on ARM processors.

END Microsoft Specific

See Also

Keywords
Fundamental Types
Data Type Ranges