Home
last modified time | relevance | path

Searched refs:predux (Results 1 – 14 of 14) sorted by relevance

/external/eigen/Eigen/src/Core/products/
DGeneralMatrixVector.h495 tmp0 += predux(ptmp0);
496 tmp1 += predux(ptmp1);
497 tmp2 += predux(ptmp2);
498 tmp3 += predux(ptmp3);
540 tmp0 += predux(ptmp0);
DSelfadjointMatrixVector.h145 res[j] += alpha * (t2 + predux(ptmp2)); in run()
146 res[j+1] += alpha * (t3 + predux(ptmp3)); in run()
DCoeffBasedProduct.h326 res = predux(pres);
/external/eigen/bench/
Dbench_norm.cpp168 Scalar abig = internal::predux(pabig); in pblueNorm()
169 Scalar asml = internal::predux(pasml); in pblueNorm()
170 Scalar amed = internal::predux(pamed); in pblueNorm()
/external/eigen/Eigen/src/Core/
DRedux.h230 res = func.predux(packet_res0);
274 res = func.predux(packet_res);
302 … Scalar res = func.predux(redux_vec_unroller<Func, Derived, 0, Size / PacketSize>::run(mat,func));
DFunctors.h31 EIGEN_STRONG_INLINE const Scalar predux(const Packet& a) const in predux() function
32 { return internal::predux(a); } in predux()
59 EIGEN_STRONG_INLINE const result_type predux(const Packet& a) const
111 EIGEN_STRONG_INLINE const Scalar predux(const Packet& a) const
134 EIGEN_STRONG_INLINE const Scalar predux(const Packet& a) const
DGenericPacketMath.h200 template<typename Packet> inline typename unpacket_traits<Packet>::type predux(const Packet& a) in predux() function
/external/eigen/Eigen/src/Core/arch/SSE/
DPacketMath.h470 template<> EIGEN_STRONG_INLINE float predux<Packet4f>(const Packet4f& a)
476 template<> EIGEN_STRONG_INLINE double predux<Packet2d>(const Packet2d& a) { return pfirst(_mm_hadd_…
486 template<> EIGEN_STRONG_INLINE float predux<Packet4f>(const Packet4f& a)
491 template<> EIGEN_STRONG_INLINE double predux<Packet2d>(const Packet2d& a)
516 template<> EIGEN_STRONG_INLINE int predux<Packet4i>(const Packet4i& a)
DComplex.h129 template<> EIGEN_STRONG_INLINE std::complex<float> predux<Packet2cf>(const Packet2cf& a)
328 template<> EIGEN_STRONG_INLINE std::complex<double> predux<Packet1cd>(const Packet1cd& a)
/external/eigen/Eigen/src/Core/arch/NEON/
DPacketMath.h249 template<> EIGEN_STRONG_INLINE float predux<Packet4f>(const Packet4f& a)
280 template<> EIGEN_STRONG_INLINE int predux<Packet4i>(const Packet4i& a)
DComplex.h139 template<> EIGEN_STRONG_INLINE std::complex<float> predux<Packet2cf>(const Packet2cf& a)
/external/eigen/Eigen/src/Core/arch/AltiVec/
DPacketMath.h353 template<> EIGEN_STRONG_INLINE float predux<Packet4f>(const Packet4f& a)
391 template<> EIGEN_STRONG_INLINE int predux<Packet4i>(const Packet4i& a)
DComplex.h125 template<> EIGEN_STRONG_INLINE std::complex<float> predux<Packet2cf>(const Packet2cf& a)
/external/eigen/test/
Dpacketmath.cpp185 …VERIFY(isApproxAbs(ref[0], internal::predux(internal::pload<Packet>(data1)), refvalue) && "interna… in packetmath()