Searched defs:ploadu (Results 1 - 7 of 7) sorted by relevance

/external/eigen/Eigen/src/Core/arch/SSE/
H A DComplex.h85 template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_UNALIGNED_LOAD return Packet2cf(ploadu<Packet4f>(&numext::real_ref(*from))); } function in namespace:Eigen::internal
306 template<> EIGEN_STRONG_INLINE Packet1cd ploadu<Packet1cd>(const std::complex<double>* from) function in namespace:Eigen::internal
307 { EIGEN_DEBUG_UNALIGNED_LOAD return Packet1cd(ploadu<Packet2d>((const double*)from)); }
309 { /* here we really have to use unaligned loads :( */ return ploadu<Packet1cd>(&from); }
H A DPacketMath.h224 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) { function in namespace:Eigen::internal
238 template<> EIGEN_STRONG_INLINE Packet2d ploadu<Packet2d>(const double* from) { EIGEN_DEBUG_UNALIGNED_LOAD return _mm_loadu_pd(from); } function in namespace:Eigen::internal
239 template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from) { EIGEN_DEBUG_UNALIGNED_LOAD return _mm_loadu_si128(reinterpret_cast<const Packet4i*>(from)); } function in namespace:Eigen::internal
258 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) function in namespace:Eigen::internal
270 template<> EIGEN_STRONG_INLINE Packet2d ploadu<Packet2d>(const double* from) function in namespace:Eigen::internal
282 template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from) function in namespace:Eigen::internal
/external/eigen/Eigen/src/Core/arch/AltiVec/
H A DComplex.h63 res.v = ploadu<Packet4f>((const float *)&from);
98 template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_UNALIGNED_LOAD return Packet2cf(ploadu<Packet4f>((const float*)from)); } function in namespace:Eigen::internal
H A DPacketMath.h262 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) function in namespace:Eigen::internal
274 template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from) function in namespace:Eigen::internal
290 else p = ploadu<Packet4f>(from);
297 else p = ploadu<Packet4i>(from);
/external/eigen/Eigen/src/Core/arch/NEON/
H A DComplex.h106 template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_UNALIGNED_LOAD return Packet2cf(ploadu<Packet4f>((const float*)from)); } function in namespace:Eigen::internal
H A DPacketMath.h188 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) { EIGEN_DEBUG_UNALIGNED_LOAD return vld1q_f32(from); } function in namespace:Eigen::internal
189 template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from) { EIGEN_DEBUG_UNALIGNED_LOAD return vld1q_s32(from); } function in namespace:Eigen::internal
/external/eigen/Eigen/src/Core/
H A DGenericPacketMath.h157 ploadu(const typename unpacket_traits<Packet>::type* from) { return *from; } function in namespace:Eigen::internal
292 return ploadu<Packet>(from);

Completed in 435 milliseconds