HomeSort by relevance Sort by last modified time
    Searched refs:pstoreu (Results 1 - 10 of 10) sorted by null

  /external/eigen/Eigen/src/Core/products/
GeneralBlockPanelKernel.h 768 pstoreu(r0, R0);
779 pstoreu(r1, R1);
780 pstoreu(r2, R2);
781 pstoreu(r3, R3);
782 pstoreu(r0 + ResPacketSize, R4);
783 pstoreu(r1 + ResPacketSize, R5);
784 pstoreu(r2 + ResPacketSize, R6);
785 pstoreu(r3 + ResPacketSize, R0);
796 pstoreu(r0, R0);
801 pstoreu(r1, R1)
    [all...]
  /external/eigen/Eigen/src/Core/
GenericPacketMath.h 180 template<typename Scalar, typename Packet> inline void pstoreu(Scalar* to, const Packet& from) function in namespace:Eigen::internal
303 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 304 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/
Complex.h 111 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 209 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/arch/SSE/
PacketMath.h 313 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
Complex.h 108 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
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 368 pstoreu(px, padd(pmul(pc,xi),pcj.pmul(ps,yi)));
369 pstoreu(px+PacketSize, padd(pmul(pc,xi1),pcj.pmul(ps,yi1)));
379 pstoreu(x+peelingEnd, padd(pmul(pc,xi),pcj.pmul(ps,yi)));
  /external/eigen/test/
packetmath.cpp 131 internal::pstoreu(data2+offset, internal::pload<Packet>(data1));
132 VERIFY(areApprox(data1, data2+offset, PacketSize) && "internal::pstoreu");

Completed in 103 milliseconds