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

  /external/eigen/Eigen/src/Core/arch/AltiVec/
Complex.h 61 res.v = pload<Packet4f>((const float *)&from);
97 template<> EIGEN_STRONG_INLINE Packet2cf pload <Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>((const float*)from)); } function in namespace:Eigen::internal
PacketMath.h 256 template<> EIGEN_STRONG_INLINE Packet4f pload<Packet4f>(const float* from) { EIGEN_DEBUG_ALIGNED_LOAD return vec_ld(0, from); } function in namespace:Eigen::internal
257 template<> EIGEN_STRONG_INLINE Packet4i pload<Packet4i>(const int* from) { EIGEN_DEBUG_ALIGNED_LOAD return vec_ld(0, from); } function in namespace:Eigen::internal
286 if((ptrdiff_t(&from) % 16) == 0) p = pload<Packet4f>(from);
293 if((ptrdiff_t(&from) % 16) == 0) p = pload<Packet4i>(from);
  /external/eigen/Eigen/src/Core/arch/SSE/
Complex.h 84 template<> EIGEN_STRONG_INLINE Packet2cf pload <Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>(&real_ref(*from))); } function in namespace:Eigen::internal
298 template<> EIGEN_STRONG_INLINE Packet1cd pload <Packet1cd>(const std::complex<double>* from) function in namespace:Eigen::internal
299 { EIGEN_DEBUG_ALIGNED_LOAD return Packet1cd(pload<Packet2d>((const double*)from)); }
PacketMath.h 202 template<> EIGEN_STRONG_INLINE Packet4f pload<Packet4f>(const float* from) { EIGEN_DEBUG_ALIGNED_LOAD return _mm_load_ps(from); } function in namespace:Eigen::internal
203 template<> EIGEN_STRONG_INLINE Packet2d pload<Packet2d>(const double* from) { EIGEN_DEBUG_ALIGNED_LOAD return _mm_load_pd(from); } function in namespace:Eigen::internal
204 template<> EIGEN_STRONG_INLINE Packet4i pload<Packet4i>(const int* from) { EIGEN_DEBUG_ALIGNED_LOAD return _mm_load_si128(reinterpret_cast<const Packet4i*>(from)); } function in namespace:Eigen::internal
  /external/eigen/Eigen/src/Core/
GenericPacketMath.h 153 pload(const typename unpacket_traits<Packet>::type* from) { return *from; } function in namespace:Eigen::internal
281 return pload<Packet>(from);
  /external/eigen/Eigen/src/Core/arch/NEON/
Complex.h 108 template<> EIGEN_STRONG_INLINE Packet2cf pload<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>((const float*)from)); } function in namespace:Eigen::internal
PacketMath.h 182 template<> EIGEN_STRONG_INLINE Packet4f pload<Packet4f>(const float* from) { EIGEN_DEBUG_ALIGNED_LOAD return vld1q_f32(from); } function in namespace:Eigen::internal
183 template<> EIGEN_STRONG_INLINE Packet4i pload<Packet4i>(const int* from) { EIGEN_DEBUG_ALIGNED_LOAD return vld1q_s32(from); } function in namespace:Eigen::internal

Completed in 464 milliseconds