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

/external/eigen/Eigen/src/Core/arch/SSE/
H A DComplex.h108 template<> EIGEN_STRONG_INLINE void pstoreu<std::complex<float> >(std::complex<float> * to, const Packet2cf& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu(&numext::real_ref(*to), from.v); } function in namespace:Eigen::internal
315 template<> EIGEN_STRONG_INLINE void pstoreu<std::complex<double> >(std::complex<double> * to, const Packet1cd& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu((double*)to, from.v); } function in namespace:Eigen::internal
H A DPacketMath.h313 template<> EIGEN_STRONG_INLINE void pstoreu<double>(double* to, const Packet2d& from) { function in namespace:Eigen::internal
318 template<> EIGEN_STRONG_INLINE void pstoreu<float>(float* to, const Packet4f& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu(reinterpret_cast<double*>(to), _mm_castps_pd(from)); } function in namespace:Eigen::internal
319 template<> EIGEN_STRONG_INLINE void pstoreu<int>(int* to, const Packet4i& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu(reinterpret_cast<double*>(to), _mm_castsi128_pd(from)); } function in namespace:Eigen::internal
/external/eigen/Eigen/src/Core/arch/AltiVec/
H A DComplex.h106 template<> EIGEN_STRONG_INLINE void pstoreu<std::complex<float> >(std::complex<float> * to, const Packet2cf& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu((float*)to, from.v); } function in namespace:Eigen::internal
H A DPacketMath.h304 template<> EIGEN_STRONG_INLINE void pstoreu<float>(float* to, const Packet4f& from) function in namespace:Eigen::internal
322 template<> EIGEN_STRONG_INLINE void pstoreu<int>(int* to, const Packet4i& from) function in namespace:Eigen::internal
/external/eigen/Eigen/src/Core/arch/NEON/
H A DComplex.h111 template<> EIGEN_STRONG_INLINE void pstoreu<std::complex<float> >(std::complex<float> * to, const Packet2cf& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu((float*)to, from.v); } function in namespace:Eigen::internal
H A DPacketMath.h209 template<> EIGEN_STRONG_INLINE void pstoreu<float>(float* to, const Packet4f& from) { EIGEN_DEBUG_UNALIGNED_STORE vst1q_f32(to, from); } function in namespace:Eigen::internal
210 template<> EIGEN_STRONG_INLINE void pstoreu<int>(int* to, const Packet4i& from) { EIGEN_DEBUG_UNALIGNED_STORE vst1q_s32(to, from); } function in namespace:Eigen::internal
/external/eigen/Eigen/src/Core/
H A DGenericPacketMath.h180 template<typename Scalar, typename Packet> inline void pstoreu(Scalar* to, const Packet& from) function in namespace:Eigen::internal
303 pstoreu(to, from);

Completed in 106 milliseconds