Searched refs:_mm256_blend_ps (Results 1 – 8 of 8) sorted by relevance
/external/eigen/Eigen/src/Core/arch/AVX/ |
D | PacketMath.h | 232 …tmp = _mm256_blend_ps(tmp,_mm256_castps128_ps256(_mm_permute_ps( _mm256_castps256_ps128(tmp), _MM_… 377 __m256 blend1 = _mm256_blend_ps(sum1, sum2, 0xcc); 378 __m256 blend2 = _mm256_blend_ps(sum3, sum4, 0xcc); 380 __m256 final = _mm256_blend_ps(blend1, blend2, 0xf0); 457 first = _mm256_blend_ps(first, second, 1); 460 first = _mm256_blend_ps(tmp1, tmp2, 0x88); 464 first = _mm256_blend_ps(first, second, 3); 467 first = _mm256_blend_ps(tmp1, tmp2, 0xcc); 471 first = _mm256_blend_ps(first, second, 7); 474 first = _mm256_blend_ps(tmp1, tmp2, 0xee); [all …]
|
D | Complex.h | 461 return Packet4cf(_mm256_blend_ps(a.v,pset1<Packet4cf>(b).v,1|2)); 471 return Packet4cf(_mm256_blend_ps(a.v,pset1<Packet4cf>(b).v,(1<<7)|(1<<6)));
|
/external/eigen/Eigen/src/Core/arch/AVX512/ |
D | PacketMath.h | 466 lane0 = _mm256_blend_ps( 476 lane1 = _mm256_blend_ps( 726 __m256 blend1 = _mm256_blend_ps(sum1, sum2, 0xcc); 727 __m256 blend2 = _mm256_blend_ps(sum3, sum4, 0xcc); 729 __m256 final = _mm256_blend_ps(blend1, blend2, 0xf0); 751 blend1 = _mm256_blend_ps(sum1, sum2, 0xcc); 752 blend2 = _mm256_blend_ps(sum3, sum4, 0xcc); 754 final = padd(final, _mm256_blend_ps(blend1, blend2, 0xf0)); 776 blend1 = _mm256_blend_ps(sum1, sum2, 0xcc); 777 blend2 = _mm256_blend_ps(sum3, sum4, 0xcc); [all …]
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | pa_avx.cpp | 2036 verts[1].v[i] = _mm256_blend_ps(vPermA, vPermB, 0x88); in PaLineStrip1() 2338 …v0[i] = _mm256_blend_ps(a[i], tmp0, 0x20); // v0 = { v0, *, *, v3, *, v9, v6, … in PaRectList1() 2341 …v0[i] = _mm256_blend_ps(tmp1, v0[i], 0xF0); // v0 = { v0, v0, v3, v3, v6, v6, v9, v… in PaRectList1() 2348 … tmp2 = _mm256_blend_ps(v1[i], tmp1, 0xF0); // tmp2 = { v1, v2, *, *, v7, *, v4, v5 } in PaRectList1() 2351 … v1[i] = _mm256_blend_ps(tmp2, v1[i], 0xE0); // v1 = { v1, v2, *, *, v7, v8, v10, v11 } in PaRectList1() 2352 … v1[i] = _mm256_blend_ps(v1[i], tmp1, 0x0C); // v1 = { v1, v2, v4, v5, v7, v8, v10, v11 } in PaRectList1() 2358 v2[i] = _mm256_blend_ps(tmp1, v2[i], 0xF0); in PaRectList1() 2364 … v2[i] = _mm256_blend_ps(v2[i], tmp2, 0xAA); // v2 = { v2, w, v5, x, v8, y, v11, z } in PaRectList1() 2466 …v0_lo = _mm256_blend_ps(a[i], tmp0, 0x20); // v0 = { v0, *, *, v3, *, v9, v6, … in PaRectList1_simd16() 2469 …v0_lo = _mm256_blend_ps(tmp1, v0_lo, 0xF0); // v0 = { v0, v0, v3, v3, v6, v6, v9, v… in PaRectList1_simd16() [all …]
|
D | backend_impl.h | 239 …packedCoverage0 = _mm256_castps_si256(_mm256_blend_ps(_mm256_castsi256_ps(packedCoverage0), shufRe… in generateInputCoverage() 247 shufRes = _mm256_blend_ps(_mm256_castsi256_ps(packedCoverage1), shufRes, 0xFE); in generateInputCoverage() 249 …packedSampleCoverage = _mm256_castps_si256(_mm256_blend_ps(_mm256_castsi256_ps(packedCoverage0), _… in generateInputCoverage()
|
/external/clang/test/CodeGen/ |
D | avx-builtins.c | 70 return _mm256_blend_ps(A, B, 0x35); in test_mm256_blend_ps()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/ |
D | simdlib_256_avx.inl | 459 SIMD_IFWRAPPER_2I(blend_epi32, _mm256_blend_ps); // return ImmT ? b : a (int32)
|
/external/clang/lib/Headers/ |
D | avxintrin.h | 1386 #define _mm256_blend_ps(V1, V2, M) __extension__ ({ \ macro
|