HomeSort by relevance Sort by last modified time
    Searched defs:Packet4f (Results 1 - 4 of 4) sorted by null

  /external/eigen/Eigen/src/Core/arch/NEON/
PacketMath.h 40 typedef float32x4_t Packet4f;
46 const Packet4f p4f_##NAME = pset1<Packet4f>(X)
49 const Packet4f p4f_##NAME = vreinterpretq_f32_u32(pset1<int32_t>(X))
72 typedef Packet4f type;
73 typedef Packet4f half; // Packet2f intrinsics not implemented yet
111 template<> struct unpacket_traits<Packet4f> { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };
114 template<> EIGEN_STRONG_INLINE Packet4f pset1<Packet4f>(const float& from) { return vdupq_n_f32(from);
    [all...]
  /external/eigen/Eigen/src/Core/arch/SSE/
PacketMath.h 51 typedef eigen_packet_wrapper<__m128> Packet4f;
55 typedef __m128 Packet4f;
80 const Packet4f p4f_##NAME = pset1<Packet4f>(X)
86 const Packet4f p4f_##NAME = _mm_castsi128_ps(pset1<Packet4i>(X))
97 typedef Packet4f type;
98 typedef Packet4f half;
161 template<> struct unpacket_traits<Packet4f> { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };
174 template<> EIGEN_STRONG_INLINE Packet4f pset1<Packet4f>(const float& from) { return _mm_set_ps(from,from,from,from);
    [all...]
  /external/eigen/Eigen/src/Core/arch/AltiVec/
PacketMath.h 34 typedef __vector float Packet4f;
45 Packet4f p4f_##NAME = reinterpret_cast<Packet4f>(vec_splat_s32(X))
51 Packet4f p4f_##NAME = pset1<Packet4f>(X)
63 const Packet4f p4f_##NAME = reinterpret_cast<Packet4f>(pset1<Packet4i>(X))
75 static Packet4f p4f_MZERO = (Packet4f) vec_sl((Packet4ui)p4i_MINUS1, (Packet4ui)p4i_MINUS1); //{ 0x80000000, 0x80000000, 0x80000000, 0x80000000}
77 static Packet4f p4f_ONE = vec_ctf(p4i_ONE, 0); //{ 1.0, 1.0, 1.0, 1.0
    [all...]
  /external/eigen/Eigen/src/Core/arch/ZVector/
PacketMath.h 46 } Packet4f;
94 static Packet4f p4f_COUNTDOWN = { 0.0, 1.0, 2.0, 3.0 };
154 typedef Packet4f type;
155 typedef Packet4f half;
215 template<> struct unpacket_traits<Packet4f> { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };
219 EIGEN_DEVICE_FUNC inline void ptranspose(PacketBlock<Packet4f,4>& kernel);
263 template<int element> EIGEN_STRONG_INLINE Packet4f vec_splat_packet4f(const Packet4f& from)
265 Packet4f splat
    [all...]

Completed in 343 milliseconds