Home | History | Annotate | Download | only in include

Lines Matching refs:__V

64    (__V & __M) == 0.  */
66 _mm_testz_si128 (__m128i __M, __m128i __V)
68 return __builtin_ia32_ptestz128 ((__v2di)__M, (__v2di)__V);
72 (__V & ~__M) == 0. */
74 _mm_testc_si128 (__m128i __M, __m128i __V)
76 return __builtin_ia32_ptestc128 ((__v2di)__M, (__v2di)__V);
80 (__V & __M) != 0 && (__V & ~__M) != 0. */
82 _mm_testnzc_si128 (__m128i __M, __m128i __V)
84 return __builtin_ia32_ptestnzc128 ((__v2di)__M, (__v2di)__V);
99 _mm_round_pd (__m128d __V, const int __M)
101 return (__m128d) __builtin_ia32_roundpd ((__v2df)__V, __M);
105 _mm_round_sd(__m128d __D, __m128d __V, const int __M)
108 (__v2df)__V,
124 _mm_round_ps (__m128 __V, const int __M)
126 return (__m128) __builtin_ia32_roundps ((__v4sf)__V, __M);
130 _mm_round_ss (__m128 __D, __m128 __V, const int __M)
133 (__v4sf)__V,
802 _mm_crc32_u8 (unsigned int __C, unsigned char __V)
804 return __builtin_ia32_crc32qi (__C, __V);
808 _mm_crc32_u16 (unsigned int __C, unsigned short __V)
810 return __builtin_ia32_crc32hi (__C, __V);
814 _mm_crc32_u32 (unsigned int __C, unsigned int __V)
816 return __builtin_ia32_crc32si (__C, __V);
821 _mm_crc32_u64 (unsigned long long __C, unsigned long long __V)
823 return __builtin_ia32_crc32di (__C, __V);