/external/eigen/Eigen/src/Core/products/ |
GeneralBlockPanelKernel.h | 761 pstoreu(r0, R0); 772 pstoreu(r1, R1); 773 pstoreu(r2, R2); 774 pstoreu(r3, R3); 775 pstoreu(r0 + ResPacketSize, R4); 776 pstoreu(r1 + ResPacketSize, R5); 777 pstoreu(r2 + ResPacketSize, R6); 778 pstoreu(r3 + ResPacketSize, R0); 789 pstoreu(r0, R0); 794 pstoreu(r1, R1) [all...] |
/external/eigen/Eigen/src/Core/arch/SSE/ |
Complex.h | 102 template<> EIGEN_STRONG_INLINE void pstoreu<std::complex<float> >(std::complex<float> * to, const Packet2cf& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu(&real_ref(*to), from.v); } function in namespace:Eigen::internal 309 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
|
PacketMath.h | 296 template<> EIGEN_STRONG_INLINE void pstoreu<double>(double* to, const Packet2d& from) { function in namespace:Eigen::internal 301 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 302 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/ |
GenericPacketMath.h | 176 template<typename Scalar, typename Packet> inline void pstoreu(Scalar* to, const Packet& from) function in namespace:Eigen::internal 294 pstoreu(to, from);
|
/external/eigen/Eigen/src/Core/arch/AltiVec/ |
Complex.h | 106 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
|
PacketMath.h | 301 template<> EIGEN_STRONG_INLINE void pstoreu<float>(float* to, const Packet4f& from) function in namespace:Eigen::internal 319 template<> EIGEN_STRONG_INLINE void pstoreu<int>(int* to, const Packet4i& from) function in namespace:Eigen::internal
|
/external/eigen/Eigen/src/Core/arch/NEON/ |
Complex.h | 114 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
|
PacketMath.h | 206 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 207 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/Jacobi/ |
Jacobi.h | 355 pstoreu(px, padd(pmul(pc,xi),pcj.pmul(ps,yi))); 356 pstoreu(px+PacketSize, padd(pmul(pc,xi1),pcj.pmul(ps,yi1))); 366 pstoreu(x+peelingEnd, padd(pmul(pc,xi),pcj.pmul(ps,yi)));
|
/external/eigen/test/ |
packetmath.cpp | 130 internal::pstoreu(data2+offset, internal::pload<Packet>(data1)); 131 VERIFY(areApprox(data1, data2+offset, PacketSize) && "internal::pstoreu");
|