Searched refs:copyPacket (Results 1 – 7 of 7) sorted by relevance
/external/eigen/Eigen/src/Core/ |
D | Swap.h | 94 void copyPacket(Index rowId, Index colId, const DenseBase<OtherDerived>& other) 107 void copyPacket(Index index, const DenseBase<OtherDerived>& other)
|
D | DenseCoeffsBase.h | 253 void copyPacket(); 517 EIGEN_STRONG_INLINE void copyPacket(Index row, Index col, const DenseBase<OtherDerived>& other) in copyPacket() function 534 EIGEN_STRONG_INLINE void copyPacket(Index index, const DenseBase<OtherDerived>& other) in copyPacket() function 548 derived().template copyPacket< OtherDerived, StoreMode, LoadMode>(row, col, other); in copyPacketByOuterInner()
|
D | SelfCwiseBinaryOp.h | 107 void copyPacket(Index row, Index col, const DenseBase<OtherDerived>& other) 117 void copyPacket(Index index, const DenseBase<OtherDerived>& other)
|
D | DenseBase.h | 85 using Base::copyPacket;
|
D | Assign.h | 410 dst.template copyPacket<Derived2, dstAlignment, srcAlignment>(index, src);
|
/external/eigen/bench/btl/libs/eigen3/ |
D | eigen3_interface.hh | 141 dst.template copyPacket<Src, Aligned, Unaligned>(j, index, src); in triassign() 143 dst.template copyPacket<Src, Aligned, Unaligned>(index, j, src); in triassign()
|
/external/eigen/doc/ |
D | InsideEigenExample.dox | 349 …dst.template copyPacket<Derived2, Aligned, internal::assign_traits<Derived1,Derived2>::SrcAlignmen… 372 …dst.template copyPacket<Derived2, Aligned, internal::assign_traits<Derived1,Derived2>::SrcAlignmen… 376 What is copyPacket? It is defined in src/Core/Coeffs.h: 380 inline void MatrixBase<Derived>::copyPacket(int index, const MatrixBase<OtherDerived>& other) 422 … look into the packet() call. Remember that we are analyzing this line of code inside copyPacket(): 479 …dst.template copyPacket<Derived2, Aligned, internal::assign_traits<Derived1,Derived2>::SrcAlignmen… 489 …t is just simpler because there is no SSE vectorization involved here. copyPacket() becomes copyCo…
|