Home
last modified time | relevance | path

Searched refs:packetOp (Results 1 – 7 of 7) sorted by relevance

/external/eigen/Eigen/src/Core/
DFunctors.h28 EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& b) const in packetOp() function
56 EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& b) const
88 EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& b) const
108 EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& b) const
131 EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& b) const
192 EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& b) const
217 EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a, const Packet& b) const
273 EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a) const
293 EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a) const
315 EIGEN_STRONG_INLINE const Packet packetOp(const Packet& a) const
[all …]
DRedux.h133 return func.packetOp(
222 packet_res0 = func.packetOp(packet_res0, mat.template packet<alignment>(index));
223 … packet_res1 = func.packetOp(packet_res1, mat.template packet<alignment>(index+packetSize));
226 packet_res0 = func.packetOp(packet_res0,packet_res1);
228 packet_res0 = func.packetOp(packet_res0, mat.template packet<alignment>(alignedEnd2));
272 packet_res = func.packetOp(packet_res, mat.template packetByOuterInner<Unaligned>(j,i));
DCwiseUnaryOp.h109 …return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(rowId, …
120 …return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(index));
DSelfCwiseBinaryOp.h113 …m_functor.packetOp(m_matrix.template packet<StoreMode>(row, col),_other.template packet<LoadMode>(…
122 …m_functor.packetOp(m_matrix.template packet<StoreMode>(index),_other.template packet<LoadMode>(ind…
DCwiseBinaryOp.h181 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(rowId, colId),
194 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(index),
DCwiseNullaryOp.h77 return m_functor.packetOp(rowId, colId);
88 return m_functor.packetOp(index);
/external/eigen/doc/
DInsideEigenExample.dox436 …return m_functor.packetOp(m_lhs.template packet<LoadMode>(index), m_rhs.template packet<LoadMode>(…
454 …\a w have been returned, what does this function do? It calls m_functor.packetOp() on them. What i…
465 inline const PacketScalar packetOp(const PacketScalar& a, const PacketScalar& b) const
469 As you can see, all what packetOp() does is to call internal::padd on the two packets. Here is the …