Home
last modified time | relevance | path

Searched refs:ploadu (Results 1 – 13 of 13) sorted by relevance

/external/eigen/bench/
DbenchVecAdd.cpp128 …::pstore(&a[i+2*PacketSize], internal::padd(internal::ploadu(&a[i+2*PacketSize]), internal::ploadu in benchVec()
129 …::pstore(&a[i+3*PacketSize], internal::padd(internal::ploadu(&a[i+3*PacketSize]), internal::ploadu in benchVec()
130 …::pstore(&a[i+4*PacketSize], internal::padd(internal::ploadu(&a[i+4*PacketSize]), internal::ploadu in benchVec()
131 …::pstore(&a[i+5*PacketSize], internal::padd(internal::ploadu(&a[i+5*PacketSize]), internal::ploadu in benchVec()
132 …::pstore(&a[i+6*PacketSize], internal::padd(internal::ploadu(&a[i+6*PacketSize]), internal::ploadu in benchVec()
133 …::pstore(&a[i+7*PacketSize], internal::padd(internal::ploadu(&a[i+7*PacketSize]), internal::ploadu in benchVec()
/external/eigen/Eigen/src/Core/products/
DGeneralBlockPanelKernel.h760 R0 = ploadu<ResPacket>(r0);
761 R1 = ploadu<ResPacket>(r1);
762 R2 = ploadu<ResPacket>(r2);
763 R3 = ploadu<ResPacket>(r3);
764 R4 = ploadu<ResPacket>(r0 + ResPacketSize);
765 R5 = ploadu<ResPacket>(r1 + ResPacketSize);
766 R6 = ploadu<ResPacket>(r2 + ResPacketSize);
769 R0 = ploadu<ResPacket>(r3 + ResPacketSize);
792 R0 = ploadu<ResPacket>(r0);
793 R1 = ploadu<ResPacket>(r1);
[all …]
DSelfadjointMatrixVector.h128 Packet A0i = ploadu<Packet>(a0It); a0It += PacketSize; in run()
129 Packet A1i = ploadu<Packet>(a1It); a1It += PacketSize; in run()
130 … Packet Bi = ploadu<Packet>(rhsIt); rhsIt += PacketSize; // FIXME should be aligned in most cases in run()
DGeneralMatrixVector.h264 … pstore(&res[i], pcj.pmadd(ploadu<LhsPacket>(&lhs0[i]), ptmp0, pload<ResPacket>(&res[i])));
539 ptmp0 = pcj.pmadd(ploadu<LhsPacket>(&lhs0[j]), pload<RhsPacket>(&rhs[j]), ptmp0);
/external/eigen/Eigen/src/Core/arch/AltiVec/
DComplex.h63 res.v = ploadu<Packet4f>((const float *)&from);
98 …_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_UNALIGNE…
DPacketMath.h262 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from)
274 template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from)
290 else p = ploadu<Packet4f>(from);
297 else p = ploadu<Packet4i>(from);
/external/eigen/Eigen/src/Core/arch/SSE/
DComplex.h85 …_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_UNALIGNE…
306 template<> EIGEN_STRONG_INLINE Packet1cd ploadu<Packet1cd>(const std::complex<double>* from)
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); }
DPacketMath.h248 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) {
262 …template<> EIGEN_STRONG_INLINE Packet2d ploadu<Packet2d>(const double* from) { EIGEN_DEBUG_UNALIGN…
263 …template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from) { EIGEN_DEBUG_UNALIGN…
282 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from)
299 template<> EIGEN_STRONG_INLINE Packet2d ploadu<Packet2d>(const double* from)
316 template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from)
/external/eigen/Eigen/src/Core/arch/NEON/
DComplex.h106 …_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_UNALIGNE…
DPacketMath.h197 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) { EIGEN_DEBUG_UNALIGNED…
198 template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from) { EIGEN_DEBUG_UNALIGNED…
/external/eigen/Eigen/src/Core/
DGenericPacketMath.h157 ploadu(const typename unpacket_traits<Packet>::type* from) { return *from; } in ploadu() function
292 return ploadu<Packet>(from); in ploadt()
/external/eigen/Eigen/src/Jacobi/
DJacobi.h364 Packet xi = ploadu<Packet>(px); in apply_rotation_in_the_plane()
365 Packet xi1 = ploadu<Packet>(px+PacketSize); in apply_rotation_in_the_plane()
377 Packet xi = ploadu<Packet>(x+peelingEnd); in apply_rotation_in_the_plane()
/external/eigen/test/
Dpacketmath.cpp125 internal::pstore(data2, internal::ploadu<Packet>(data1+offset)); in packetmath()