Home
last modified time | relevance | path

Searched refs:plset (Results 1 – 6 of 6) sorted by relevance

/external/eigen/Eigen/src/Core/arch/NEON/
DPacketMath.h98 template<> EIGEN_STRONG_INLINE Packet4f plset<float>(const float& a)
103 template<> EIGEN_STRONG_INLINE Packet4i plset<int>(const int& a)
/external/eigen/Eigen/src/Core/arch/AltiVec/
DPacketMath.h164 template<> EIGEN_STRONG_INLINE Packet4f plset<float>(const float& a) { return vec_add(pset1<Packet4…
165 template<> EIGEN_STRONG_INLINE Packet4i plset<int>(const int& a) { return vec_add(pset1<Packet4…
/external/eigen/Eigen/src/Core/arch/SSE/
DPacketMath.h118 template<> EIGEN_STRONG_INLINE Packet4f plset<float>(const float& a) { return _mm_add_ps(pset1<Pack…
119 template<> EIGEN_STRONG_INLINE Packet2d plset<double>(const double& a) { return _mm_add_pd(pset1<Pa…
120 template<> EIGEN_STRONG_INLINE Packet4i plset<int>(const int& a) { return _mm_add_epi32(pset1<Packe…
/external/eigen/Eigen/src/Core/
DGenericPacketMath.h173 plset(const Scalar& a) { return a; } in plset() function
DFunctors.h557 …m_base(padd(pset1<Packet>(low), pmul(pset1<Packet>(step),plset<Scalar>(-packet_traits<Scalar>::siz…
585 …m_lowPacket(pset1<Packet>(m_low)), m_stepPacket(pset1<Packet>(m_step)), m_interPacket(plset<Scalar…
/external/eigen/test/
Dpacketmath.cpp282 internal::pstore(data2, internal::plset(data1[0])); in packetmath_notcomplex()