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

  /external/eigen/Eigen/src/Core/arch/AltiVec/
Complex.h 26 struct Packet2cf
28 EIGEN_STRONG_INLINE Packet2cf() {}
29 EIGEN_STRONG_INLINE explicit Packet2cf(const Packet4f& a) : v(a) {}
35 typedef Packet2cf type;
54 template<> struct unpacket_traits<Packet2cf> { typedef std::complex<float> type; enum {size=2}; };
56 template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::complex<float>& from)
58 Packet2cf res;
68 template<> EIGEN_STRONG_INLINE Packet2cf padd<Packet2cf>(const Packet2cf& a, const Packet2cf& b) { return Packet2cf(vec_add(a.v,b.v));
    [all...]
  /external/eigen/Eigen/src/Core/arch/NEON/
Complex.h 21 struct Packet2cf
23 EIGEN_STRONG_INLINE Packet2cf() {}
24 EIGEN_STRONG_INLINE explicit Packet2cf(const Packet4f& a) : v(a) {}
30 typedef Packet2cf type;
49 template<> struct unpacket_traits<Packet2cf> { typedef std::complex<float> type; enum {size=2}; };
51 template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::complex<float>& from)
56 return Packet2cf(vcombine_f32(r64, r64));
59 template<> EIGEN_STRONG_INLINE Packet2cf padd<Packet2cf>(const Packet2cf& a, const Packet2cf& b) { return Packet2cf(padd<Packet4f>(a.v,b.v));
    [all...]
  /external/eigen/Eigen/src/Core/arch/SSE/
Complex.h 18 struct Packet2cf
20 EIGEN_STRONG_INLINE Packet2cf() {}
21 EIGEN_STRONG_INLINE explicit Packet2cf(const __m128& a) : v(a) {}
27 typedef Packet2cf type;
46 template<> struct unpacket_traits<Packet2cf> { typedef std::complex<float> type; enum {size=2}; };
48 template<> EIGEN_STRONG_INLINE Packet2cf padd<Packet2cf>(const Packet2cf& a, const Packet2cf& b) { return Packet2cf(_mm_add_ps(a.v,b.v));
    [all...]

Completed in 61 milliseconds