Home
last modified time | relevance | path

Searched refs:_mm256_blend_ps (Results 1 – 9 of 9) sorted by relevance

/external/eigen/Eigen/src/Core/arch/AVX/
DPacketMath.h232 …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 …]
DComplex.h461 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/
DPacketMath.h466 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/
Dpa_avx.cpp752 verts[1].v[i] = _mm256_blend_ps(vPermA, vPermB, 0x88); in PaLineStrip1()
894 …v0[i] = _mm256_blend_ps(a[i], tmp0, 0x20); // v0 = { v0, *, *, v3, *, v9, v6, * … in PaRectList1()
897 …v0[i] = _mm256_blend_ps(tmp1, v0[i], 0xF0); // v0 = { v0, v0, v3, v3, v6, v6, v9, v9 } in PaRectList1()
904 … tmp2 = _mm256_blend_ps(v1[i], tmp1, 0xF0); // tmp2 = { v1, v2, *, *, v7, *, v4, v5 } in PaRectList1()
907 … v1[i] = _mm256_blend_ps(tmp2, v1[i], 0xE0); // v1 = { v1, v2, *, *, v7, v8, v10, v11 } in PaRectList1()
908 … v1[i] = _mm256_blend_ps(v1[i], tmp1, 0x0C); // v1 = { v1, v2, v4, v5, v7, v8, v10, v11 } in PaRectList1()
914 v2[i] = _mm256_blend_ps(tmp1, v2[i], 0xF0); in PaRectList1()
920 … v2[i] = _mm256_blend_ps(v2[i], tmp2, 0xAA); // v2 = { v2, w, v5, x, v8, y, v11, z } in PaRectList1()
Dbackend.h226 …packedCoverage0 = _mm256_castps_si256(_mm256_blend_ps(_mm256_castsi256_ps(packedCoverage0), shufRe… in generateInputCoverage()
234 shufRes = _mm256_blend_ps(_mm256_castsi256_ps(packedCoverage1), shufRes, 0xFE); in generateInputCoverage()
236 …packedSampleCoverage = _mm256_castps_si256(_mm256_blend_ps(_mm256_castsi256_ps(packedCoverage0), _… in generateInputCoverage()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Dsimd16intrin.h347 result.lo = _mm256_blend_ps(a.lo, b.lo, _simd16_masklo(mask)); in _simd16_blend_ps_temp()
348 result.hi = _mm256_blend_ps(a.hi, b.hi, _simd16_maskhi(mask)); in _simd16_blend_ps_temp()
Dsimdintrin.h63 #define _simd_blend_ps _mm256_blend_ps
/external/clang/test/CodeGen/
Davx-builtins.c70 return _mm256_blend_ps(A, B, 0x35); in test_mm256_blend_ps()
/external/clang/lib/Headers/
Davxintrin.h1386 #define _mm256_blend_ps(V1, V2, M) __extension__ ({ \ macro