Click to Rate and Give Feedback
MSDN
MSDN Library
Visual Studio 2008
Visual Studio
Visual C++
C/C++ Languages
Compiler Intrinsics
 _mm_cmpgt_epi32
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
Visual C++ Language Reference
_mm_cmpgt_epi32

Updated: November 2007

Microsoft Specific

Compares the 4 signed 32-bit integers in a and the 4 signed 32-bit integers in b for greater than.

__m128i _mm_cmpgt_epi32 (__m128i a, __m128i b);
PCMPGTD
r0 := (a0 > b0) ? 0xffff : 0x0
r1 := (a1 > b1) ? 0xffff : 0x0
r2 := (a2 > b2) ? 0xffff : 0x0
r3 := (a3 > b3) ? 0xffff : 0x0

Header: emmintrin.h

END Microsoft Specific

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker