HomeSort by relevance Sort by last modified time
    Searched refs:conj_helper (Results 1 - 11 of 11) sorted by null

  /external/eigen/Eigen/src/Core/util/
BlasUtil.h 57 template<typename Scalar> struct conj_helper<Scalar,Scalar,false,false> struct in namespace:Eigen::internal
63 template<typename RealScalar> struct conj_helper<std::complex<RealScalar>, std::complex<RealScalar>, false,true> struct in namespace:Eigen::internal
73 template<typename RealScalar> struct conj_helper<std::complex<RealScalar>, std::complex<RealScalar>, true,false> struct in namespace:Eigen::internal
83 template<typename RealScalar> struct conj_helper<std::complex<RealScalar>, std::complex<RealScalar>, true,true> struct in namespace:Eigen::internal
93 template<typename RealScalar,bool Conj> struct conj_helper<std::complex<RealScalar>, RealScalar, Conj,false> struct in namespace:Eigen::internal
102 template<typename RealScalar,bool Conj> struct conj_helper<RealScalar, std::complex<RealScalar>, false,Conj> struct in namespace:Eigen::internal
ForwardDeclarations.h 151 template<typename LhsScalar, typename RhsScalar, bool ConjLhs=false, bool ConjRhs=false> struct conj_helper;
  /external/eigen/Eigen/src/Core/arch/AltiVec/
Complex.h 167 template<> struct conj_helper<Packet2cf, Packet2cf, false,true> struct in namespace:Eigen::internal
178 template<> struct conj_helper<Packet2cf, Packet2cf, true,false> struct in namespace:Eigen::internal
189 template<> struct conj_helper<Packet2cf, Packet2cf, true,true> struct in namespace:Eigen::internal
203 Packet2cf res = conj_helper<Packet2cf,Packet2cf,false,true>().pmul(a,b);
  /external/eigen/Eigen/src/Core/arch/NEON/
Complex.h 203 template<> struct conj_helper<Packet2cf, Packet2cf, false,true> struct in namespace:Eigen::internal
214 template<> struct conj_helper<Packet2cf, Packet2cf, true,false> struct in namespace:Eigen::internal
225 template<> struct conj_helper<Packet2cf, Packet2cf, true,true> struct in namespace:Eigen::internal
239 Packet2cf res = conj_helper<Packet2cf,Packet2cf,false,true>().pmul(a,b);
  /external/eigen/Eigen/src/Core/arch/SSE/
Complex.h 157 template<> struct conj_helper<Packet2cf, Packet2cf, false,true> struct in namespace:Eigen::internal
175 template<> struct conj_helper<Packet2cf, Packet2cf, true,false> struct in namespace:Eigen::internal
193 template<> struct conj_helper<Packet2cf, Packet2cf, true,true> struct in namespace:Eigen::internal
211 template<> struct conj_helper<Packet4f, Packet2cf, false,false> struct in namespace:Eigen::internal
220 template<> struct conj_helper<Packet2cf, Packet4f, false,false> struct in namespace:Eigen::internal
232 Packet2cf res = conj_helper<Packet2cf,Packet2cf,false,true>().pmul(a,b);
353 template<> struct conj_helper<Packet1cd, Packet1cd, false,true> struct in namespace:Eigen::internal
371 template<> struct conj_helper<Packet1cd, Packet1cd, true,false> struct in namespace:Eigen::internal
389 template<> struct conj_helper<Packet1cd, Packet1cd, true,true> struct in namespace:Eigen::internal
407 template<> struct conj_helper<Packet2d, Packet1cd, false,false struct in namespace:Eigen::internal
416 template<> struct conj_helper<Packet1cd, Packet2d, false,false> struct in namespace:Eigen::internal
    [all...]
  /external/eigen/Eigen/src/Core/products/
SelfadjointMatrixVector.h 55 conj_helper<Scalar,Scalar,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> cj0;
56 conj_helper<Scalar,Scalar,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> cj1;
57 conj_helper<Scalar,Scalar,NumTraits<Scalar>::IsComplex, ConjugateRhs> cjd;
59 conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;
60 conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;
GeneralMatrixVector.h 79 conj_helper<LhsScalar,RhsScalar,ConjugateLhs,ConjugateRhs> cj;
80 conj_helper<LhsPacket,RhsPacket,ConjugateLhs,ConjugateRhs> pcj;
343 conj_helper<LhsScalar,RhsScalar,ConjugateLhs,ConjugateRhs> cj;
344 conj_helper<LhsPacket,RhsPacket,ConjugateLhs,ConjugateRhs> pcj;
GeneralBlockPanelKernel.h 217 // conj_helper<LhsScalar,RhsScalar,ConjLhs,ConjRhs> cj;
218 // conj_helper<LhsPacket,RhsPacket,ConjLhs,ConjRhs> pcj;
298 conj_helper<ResPacket,ResPacket,ConjLhs,false> cj;
421 conj_helper<LhsScalar,RhsScalar,ConjLhs,ConjRhs> cj;
503 conj_helper<ResPacket,ResPacket,false,ConjRhs> cj;
545 conj_helper<LhsScalar,RhsScalar,ConjugateLhs,ConjugateRhs> cj;
546 // conj_helper<LhsPacket,RhsPacket,ConjugateLhs,ConjugateRhs> pcj;
    [all...]
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 334 conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex,false> pcj;
400 conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex,false> pcj;
  /external/eigen/test/
packetmath.cpp 313 internal::conj_helper<Scalar,Scalar,ConjLhs,ConjRhs> cj;
314 internal::conj_helper<Packet,Packet,ConjLhs,ConjRhs> pcj;
319 VERIFY(internal::isApprox(ref[i], cj.pmul(data1[i],data2[i])) && "conj_helper pmul");
322 VERIFY(areApprox(ref, pval, PacketSize) && "conj_helper pmul");
328 VERIFY(internal::isApprox(ref[i], cj.pmadd(data1[i],data2[i],tmp)) && "conj_helper pmadd");
331 VERIFY(areApprox(ref, pval, PacketSize) && "conj_helper pmadd");
  /external/eigen/Eigen/src/Core/
Functors.h 85 { return conj_helper<LhsScalar,RhsScalar,Conj,false>().pmul(a,b); }
89 { return conj_helper<Packet,Packet,Conj,false>().pmul(a,b); }
    [all...]

Completed in 215 milliseconds