Home
last modified time | relevance | path

Searched refs:_mm_movehl_ps (Results 1 – 15 of 15) sorted by relevance

/external/speex/libspeex/
Dresample_sse.h50 sum = _mm_add_ps(sum, _mm_movehl_ps(sum, sum)); in inner_product_single()
68 sum = _mm_add_ps(sum, _mm_movehl_ps(sum, sum)); in interpolate_product_single()
88 sum = _mm_add_pd(sum, _mm_cvtps_pd(_mm_movehl_ps(t, t))); in inner_product_double()
92 sum = _mm_add_pd(sum, _mm_cvtps_pd(_mm_movehl_ps(t, t))); in inner_product_double()
94 sum = _mm_add_sd(sum, (__m128d) _mm_movehl_ps((__m128) sum, (__m128) sum)); in inner_product_double()
108 __m128d f2 = _mm_cvtps_pd(_mm_movehl_ps(f,f)); in interpolate_product_double()
114 sum2 = _mm_add_pd(sum2, _mm_cvtps_pd(_mm_movehl_ps(t, t))); in interpolate_product_double()
118 sum2 = _mm_add_pd(sum2, _mm_cvtps_pd(_mm_movehl_ps(t, t))); in interpolate_product_double()
123 sum = _mm_add_sd(sum, (__m128d) _mm_movehl_ps((__m128) sum, (__m128) sum)); in interpolate_product_double()
Dltp_sse.h50 sum = _mm_add_ps(sum, _mm_movehl_ps(sum, sum)); in inner_prod()
87 sum = _mm_add_ps(sum, _mm_movehl_ps(sum, sum)); in pitch_xcorr()
/external/eigen/Eigen/src/LU/arch/
DInverse_SSE.h70 B = _mm_movehl_ps(_L2, _L1);
72 D = _mm_movehl_ps(_L4, _L3);
90 dA = _mm_sub_ss(dA, _mm_movehl_ps(dA,dA));
93 dB = _mm_sub_ss(dB, _mm_movehl_ps(dB,dB));
97 dC = _mm_sub_ss(dC, _mm_movehl_ps(dC,dC));
100 dD = _mm_sub_ss(dD, _mm_movehl_ps(dD,dD));
107 iD = _mm_add_ps(iD,_mm_mul_ps(_mm_shuffle_ps(C,C,0xF5), _mm_movehl_ps(AB,AB)));
110 iA = _mm_add_ps(iA,_mm_mul_ps(_mm_shuffle_ps(B,B,0xF5), _mm_movehl_ps(DC,DC)));
113 d = _mm_add_ps(d, _mm_movehl_ps(d, d));
/external/eigen/Eigen/src/Core/arch/SSE/
DPacketMath.h488 Packet4f tmp = _mm_add_ps(a, _mm_movehl_ps(a,a));
505 tmp2 = _mm_movehl_ps(tmp1, tmp0);
541 Packet4f tmp = _mm_mul_ps(a, _mm_movehl_ps(a,a));
561 Packet4f tmp = _mm_min_ps(a, _mm_movehl_ps(a,a));
582 Packet4f tmp = _mm_max_ps(a, _mm_movehl_ps(a,a));
660 first = _mm_movehl_ps(first,first);
683 first = _mm_castps_si128(_mm_movehl_ps(_mm_castsi128_ps(first),_mm_castsi128_ps(first)));
701 first = _mm_castps_pd(_mm_movehl_ps(_mm_castpd_ps(first),_mm_castpd_ps(first)));
DComplex.h131 return pfirst(Packet2cf(_mm_add_ps(a.v, _mm_movehl_ps(a.v,a.v))));
136 …return Packet2cf(_mm_add_ps(_mm_movelh_ps(vecs[0].v,vecs[1].v), _mm_movehl_ps(vecs[1].v,vecs[0].v)…
141 return pfirst(pmul(a, Packet2cf(_mm_movehl_ps(a.v,a.v))));
151 first.v = _mm_movehl_ps(first.v, first.v);
/external/libopus/celt/x86/
Dpitch_sse.h91 xsum1 = _mm_add_ps(xsum1, _mm_movehl_ps(xsum1, xsum1)); in dual_inner_prod()
94 xsum2 = _mm_add_ps(xsum2, _mm_movehl_ps(xsum2, xsum2)); in dual_inner_prod()
/external/webrtc/webrtc/common_audio/resampler/
Dsinc_resampler_sse.cc52 m_sums2 = _mm_add_ps(_mm_movehl_ps(m_sums1, m_sums1), m_sums1); in Convolve_SSE()
/external/webrtc/webrtc/common_audio/
Dfir_filter_sse.cc72 m_sum = _mm_add_ps(_mm_movehl_ps(m_sum, m_sum), m_sum); in Filter()
/external/vulkan-validation-layers/libs/glm/gtx/
Dsimd_quat.inl135 __m128 add0 = _mm_add_ps(mul0, _mm_movehl_ps(mul0, mul0));
139 __m128 add1 = _mm_add_ps(mul1, _mm_movehl_ps(mul1, mul1));
143 __m128 add2 = _mm_add_ps(mul2, _mm_movehl_ps(mul2, mul2));
147 __m128 add3 = _mm_add_ps(mul3, _mm_movehl_ps(mul3, mul3));
/external/clang/lib/Headers/
Dxmmintrin.h820 _mm_movehl_ps(__m128 __a, __m128 __b) in _mm_movehl_ps() function
907 __a = _mm_movehl_ps(__a, __a); in _mm_cvtps_pi16()
981 (row1) = _mm_movehl_ps(tmp2, tmp0); \
983 (row3) = _mm_movehl_ps(tmp3, tmp1); \
/external/vulkan-validation-layers/libs/glm/detail/
Dintrinsic_geometric.inl67 __m128 mov0 = _mm_movehl_ps(mul0, mul0);
Dintrinsic_matrix.inl109 __m128 f1 = _mm_movehl_ps(a1, a0);
449 __m128 SubF = _mm_sub_ps(_mm_movehl_ps(MulC, MulC), MulC);
515 __m128 SubF = _mm_sub_ps(_mm_movehl_ps(MulC, MulC), MulC);
/external/opencv3/modules/imgproc/src/
Dcorner.cpp85 b = _mm_movehl_ps(b, t); in calcMinEigenVal()
155 b = _mm_movehl_ps(b, t); in calcHarris()
/external/opencv3/modules/hal/src/
Dmathfuncs.cpp487 __m128d xd2 = _mm_cvtps_pd(_mm_movehl_ps(xf0, xf0)); in exp()
489 __m128d xd3 = _mm_cvtps_pd(_mm_movehl_ps(xf1, xf1)); in exp()
/external/opencv3/modules/core/src/
Dmatmul.cpp1763 _mm_store_ss(dst + x + 2, _mm_movehl_ps(y0,y0)); in transform_32f()