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>(&real_ref(*from))); } function in namespace:Eigen::internal
300 template<> EIGEN_STRONG_INLINE Packet1cd ploadu<Packet1cd>(const std::complex<double>* from) function in namespace:Eigen::internal
301 { EIGEN_DEBUG_UNALIGNED_LOAD return Packet1cd(ploadu<Packet2d>((const double*)from)); }
303 { /* here we really have to use unaligned loads :( */ return ploadu<Packet1cd>(&from); }
H A DPacketMath.h207 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) { function in namespace:Eigen::internal
221 template<> EIGEN_STRONG_INLINE Packet2d ploadu<Packet2d>(const double* from) { EIGEN_DEBUG_UNALIGNED_LOAD return _mm_loadu_pd(from); } function in namespace:Eigen::internal
222 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
241 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) function in namespace:Eigen::internal
253 template<> EIGEN_STRONG_INLINE Packet2d ploadu<Packet2d>(const double* from) function in namespace:Eigen::internal
265 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.h259 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) function in namespace:Eigen::internal
271 template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from) function in namespace:Eigen::internal
287 else p = ploadu<Packet4f>(from);
294 else p = ploadu<Packet4i>(from);
/external/eigen/Eigen/src/Core/arch/NEON/
H A DComplex.h109 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.h185 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) { EIGEN_DEBUG_UNALIGNED_LOAD return vld1q_f32(from); } function in namespace:Eigen::internal
186 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
283 return ploadu<Packet>(from);

Completed in 115 milliseconds