Lines Matching defs:V2
367 /// __m128d _mm_blend_pd(__m128d V1, __m128d V2, const int M);
374 /// \param V2
381 /// When a mask bit is 1, the corresponding 64-bit element in operand \a V2
384 #define _mm_blend_pd(V1, V2, M) \
386 (__v2df)(__m128d)(V2), (int)(M)))
395 /// __m128 _mm_blend_ps(__m128 V1, __m128 V2, const int M);
402 /// \param V2
409 /// When a mask bit is 1, the corresponding 32-bit element in operand \a V2
412 #define _mm_blend_ps(V1, V2, M) \
413 ((__m128)__builtin_ia32_blendps((__v4sf)(__m128)(V1), (__v4sf)(__m128)(V2), \
504 /// __m128i _mm_blend_epi16(__m128i V1, __m128i V2, const int M);
511 /// \param V2
518 /// When a mask bit is 1, the corresponding 16-bit element in operand \a V2
521 #define _mm_blend_epi16(V1, V2, M) \
523 (__v8hi)(__m128i)(V2), (int)(M)))