Home
last modified time | relevance | path

Searched refs:_mm_dp_ps (Results 1 – 8 of 8) sorted by relevance

/external/oboe/samples/RhythmGame/third_party/glm/gtc/
Dquaternion_simd.inl24 __m128 const add0 = _mm_dp_ps(mul0, _mm_set_ps(1.0f, -1.0f, 1.0f, 1.0f), 0xff);
25 __m128 const add1 = _mm_dp_ps(mul1, _mm_set_ps(1.0f, 1.0f, 1.0f, -1.0f), 0xff);
26 __m128 const add2 = _mm_dp_ps(mul2, _mm_set_ps(1.0f, 1.0f, -1.0f, 1.0f), 0xff);
27 __m128 const add3 = _mm_dp_ps(mul3, _mm_set_ps(1.0f, -1.0f, -1.0f, -1.0f), 0xff);
/external/oboe/samples/RhythmGame/third_party/glm/simd/
Dgeometric.h30 return _mm_dp_ps(v1, v2, 0xff); in glm_vec4_dot()
49 return _mm_dp_ps(v1, v2, 0xff); in glm_vec1_dot()
/external/oboe/samples/RhythmGame/third_party/glm/gtx/
Dsimd_quat.inl126 __m128 add0 = _mm_dp_ps(mul0, _mm_set_ps(1.0f, -1.0f, 1.0f, 1.0f), 0xff);
127 __m128 add1 = _mm_dp_ps(mul1, _mm_set_ps(1.0f, 1.0f, 1.0f, -1.0f), 0xff);
128 __m128 add2 = _mm_dp_ps(mul2, _mm_set_ps(1.0f, 1.0f, -1.0f, 1.0f), 0xff);
129 __m128 add3 = _mm_dp_ps(mul3, _mm_set_ps(1.0f, -1.0f, -1.0f, -1.0f), 0xff);
/external/clang/test/CodeGen/
Dsse41-builtins.c171 return _mm_dp_ps(x, y, 7); in test_mm_dp_ps()
/external/llvm-project/clang/test/CodeGen/X86/
Dsse41-builtins.c169 return _mm_dp_ps(x, y, 7); in test_mm_dp_ps()
/external/llvm-project/clang/lib/Headers/
Dsmmintrin.h592 #define _mm_dp_ps(X, Y, M) \ macro
/external/clang/lib/Headers/
Dsmmintrin.h134 #define _mm_dp_ps(X, Y, M) __extension__ ({ \ macro
/external/pffft/
Dsse2neon.h3772 FORCE_INLINE __m128 _mm_dp_ps(__m128 a, __m128 b, const int imm) in _mm_dp_ps() function