Lines Matching defs:V2

1211 /// __m256d _mm256_permute2f128_pd(__m256d V1, __m256d V2, const int M);
1218 /// \param V2
1228 /// 10: Bits [127:0] of operand \a V2 are copied to bits [127:0] of the
1230 /// 11: Bits [255:128] of operand \a V2 are copied to bits [127:0] of the
1237 /// 10: Bits [127:0] of operand \a V2 are copied to bits [255:128] of the
1239 /// 11: Bits [255:128] of operand \a V2 are copied to bits [255:128] of the
1242 #define _mm256_permute2f128_pd(V1, V2, M) \
1244 (__v4df)(__m256d)(V2), (int)(M)))
1252 /// __m256 _mm256_permute2f128_ps(__m256 V1, __m256 V2, const int M);
1259 /// \param V2
1269 /// 10: Bits [127:0] of operand \a V2 are copied to bits [127:0] of the
1271 /// 11: Bits [255:128] of operand \a V2 are copied to bits [127:0] of the
1278 /// 10: Bits [127:0] of operand \a V2 are copied to bits [255:128] of the
1280 /// 11: Bits [255:128] of operand \a V2 are copied to bits [255:128] of the
1283 #define _mm256_permute2f128_ps(V1, V2, M) \
1285 (__v8sf)(__m256)(V2), (int)(M)))
1293 /// __m256i _mm256_permute2f128_si256(__m256i V1, __m256i V2, const int M);
1300 /// \param V2
1309 /// 10: Bits [127:0] of operand \a V2 are copied to bits [127:0] of the
1311 /// 11: Bits [255:128] of operand \a V2 are copied to bits [127:0] of the
1318 /// 10: Bits [127:0] of operand \a V2 are copied to bits [255:128] of the
1320 /// 11: Bits [255:128] of operand \a V2 are copied to bits [255:128] of the
1323 #define _mm256_permute2f128_si256(V1, V2, M) \
1325 (__v8si)(__m256i)(V2), (int)(M)))
1335 /// __m256d _mm256_blend_pd(__m256d V1, __m256d V2, const int M);
1342 /// \param V2
1350 /// operand \a V2 is copied to the same position in the destination.
1352 #define _mm256_blend_pd(V1, V2, M) \
1354 (__v4df)(__m256d)(V2), (int)(M)))
1363 /// __m256 _mm256_blend_ps(__m256 V1, __m256 V2, const int M);
1370 /// \param V2
1378 /// operand \a V2 is copied to the same position in the destination.
1380 #define _mm256_blend_ps(V1, V2, M) \
1382 (__v8sf)(__m256)(V2), (int)(M)))
1455 /// __m256 _mm256_dp_ps(__m256 V1, __m256 V2, const int M);
1462 /// \param V2
1478 #define _mm256_dp_ps(V1, V2, M) \
1480 (__v8sf)(__m256)(V2), (M)))
4647 /// __m256 _mm256_insertf128_ps(__m256 V1, __m128 V2, const int M);
4655 /// be replaced by the contents of \a V2.
4656 /// \param V2
4663 /// If bit [0] of \a M is 0, \a V2 are copied to bits [127:0] of the result,
4666 /// If bit [0] of \a M is 1, \a V2 are copied to bits [255:128] of the
4670 #define _mm256_insertf128_ps(V1, V2, M) \
4672 (__v4sf)(__m128)(V2), (int)(M)))
4685 /// __m256d _mm256_insertf128_pd(__m256d V1, __m128d V2, const int M);
4693 /// be replaced by the contents of \a V2.
4694 /// \param V2
4701 /// If bit [0] of \a M is 0, \a V2 are copied to bits [127:0] of the result,
4704 /// If bit [0] of \a M is 1, \a V2 are copied to bits [255:128] of the
4708 #define _mm256_insertf128_pd(V1, V2, M) \
4710 (__v2df)(__m128d)(V2), (int)(M)))
4723 /// __m256i _mm256_insertf128_si256(__m256i V1, __m128i V2, const int M);
4731 /// replaced by the contents of \a V2.
4732 /// \param V2
4739 /// If bit [0] of \a M is 0, \a V2 are copied to bits [127:0] of the result,
4742 /// If bit [0] of \a M is 1, \a V2 are copied to bits [255:128] of the
4746 #define _mm256_insertf128_si256(V1, V2, M) \
4748 (__v4si)(__m128i)(V2), (int)(M)))