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

  /external/eigen/Eigen/src/Core/
NestByValue.h 71 inline const PacketScalar packet(Index row, Index col) const
77 inline void writePacket(Index row, Index col, const PacketScalar& x)
83 inline const PacketScalar packet(Index index) const
89 inline void writePacket(Index index, const PacketScalar& x)
Reverse.h 58 template<typename PacketScalar, bool ReversePacket> struct reverse_packet_cond
60 static inline PacketScalar run(const PacketScalar& x) { return preverse(x); }
63 template<typename PacketScalar> struct reverse_packet_cond<PacketScalar,false>
65 static inline PacketScalar run(const PacketScalar& x) { return x; }
95 typedef internal::reverse_packet_cond<PacketScalar,ReversePacket> reverse_packet;
145 inline const PacketScalar packet(Index row, Index col) const
153 inline void writePacket(Index row, Index col, const PacketScalar& x
    [all...]
MapBase.h 42 typedef typename internal::packet_traits<Scalar>::type PacketScalar;
113 inline PacketScalar packet(Index rowId, Index colId) const
115 return internal::ploadt<PacketScalar, LoadMode>
120 inline PacketScalar packet(Index index) const
123 return internal::ploadt<PacketScalar, LoadMode>(m_data + index * innerStride());
177 typedef typename Base::PacketScalar PacketScalar;
214 inline void writePacket(Index row, Index col, const PacketScalar& val)
216 internal::pstoret<Scalar, PacketScalar, StoreMode>
221 inline void writePacket(Index index, const PacketScalar& val
    [all...]
Flagged.h 89 inline const PacketScalar packet(Index row, Index col) const
95 inline void writePacket(Index row, Index col, const PacketScalar& x)
101 inline const PacketScalar packet(Index index) const
107 inline void writePacket(Index index, const PacketScalar& x)
ForceAlignedAccess.h 70 inline const PacketScalar packet(Index row, Index col) const
76 inline void writePacket(Index row, Index col, const PacketScalar& x)
82 inline const PacketScalar packet(Index index) const
88 inline void writePacket(Index index, const PacketScalar& x)
ArrayWrapper.h 97 inline const PacketScalar packet(Index rowId, Index colId) const
103 inline void writePacket(Index rowId, Index colId, const PacketScalar& val)
109 inline const PacketScalar packet(Index index) const
115 inline void writePacket(Index index, const PacketScalar& val)
222 inline const PacketScalar packet(Index rowId, Index colId) const
228 inline void writePacket(Index rowId, Index colId, const PacketScalar& val)
234 inline const PacketScalar packet(Index index) const
240 inline void writePacket(Index index, const PacketScalar& val)
Redux.h 129 typedef typename packet_traits<Scalar>::type PacketScalar;
131 static EIGEN_STRONG_INLINE PacketScalar run(const Derived &mat, const Func& func)
150 typedef typename packet_traits<Scalar>::type PacketScalar;
152 static EIGEN_STRONG_INLINE PacketScalar run(const Derived &mat, const Func&)
196 typedef typename packet_traits<Scalar>::type PacketScalar;
216 PacketScalar packet_res0 = mat.template packet<alignment>(alignedStart);
219 PacketScalar packet_res1 = mat.template packet<alignment>(alignedStart+packetSize);
254 typedef typename packet_traits<Scalar>::type PacketScalar;
269 PacketScalar packet_res = mat.template packet<Unaligned>(0,0);
293 typedef typename packet_traits<Scalar>::type PacketScalar;
    [all...]
DiagonalProduct.h 75 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const
87 EIGEN_STRONG_INLINE PacketScalar packet(Index idx) const
97 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::true_type) const
100 internal::pset1<PacketScalar>(m_diagonal.diagonal().coeff(id)));
104 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::false_type) const
CwiseUnaryOp.h 107 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const
118 EIGEN_STRONG_INLINE PacketScalar packet(Index index) const
Transpose.h 154 inline const PacketScalar packet(Index rowId, Index colId) const
160 inline void writePacket(Index rowId, Index colId, const PacketScalar& x)
166 inline const PacketScalar packet(Index index) const
172 inline void writePacket(Index index, const PacketScalar& x)
Block.h 251 inline PacketScalar packet(Index rowId, Index colId) const
258 inline void writePacket(Index rowId, Index colId, const PacketScalar& val)
265 inline PacketScalar packet(Index index) const
273 inline void writePacket(Index index, const PacketScalar& val)
PlainObjectBase.h 98 typedef typename internal::packet_traits<Scalar>::type PacketScalar;
179 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const
181 return internal::ploadt<PacketScalar, LoadMode>
189 EIGEN_STRONG_INLINE PacketScalar packet(Index index) const
191 return internal::ploadt<PacketScalar, LoadMode>(m_storage.data() + index);
196 EIGEN_STRONG_INLINE void writePacket(Index rowId, Index colId, const PacketScalar& val)
198 internal::pstoret<Scalar, PacketScalar, StoreMode>
206 EIGEN_STRONG_INLINE void writePacket(Index index, const PacketScalar& val)
208 internal::pstoret<Scalar, PacketScalar, StoreMode>(m_storage.data() + index, val);
    [all...]
CwiseBinaryOp.h 179 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const
192 EIGEN_STRONG_INLINE PacketScalar packet(Index index) const
DenseCoeffsBase.h 40 typedef typename internal::packet_traits<Scalar>::type PacketScalar;
283 typedef typename internal::packet_traits<Scalar>::type PacketScalar;
ArrayBase.h 55 typedef typename internal::packet_traits<Scalar>::type PacketScalar;
Replicate.h 105 inline PacketScalar packet(Index rowId, Index colId) const
CwiseNullaryOp.h 75 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const
86 EIGEN_STRONG_INLINE PacketScalar packet(Index index) const
DenseBase.h 64 typedef typename internal::packet_traits<Scalar>::type PacketScalar;
MatrixBase.h 57 typedef typename internal::packet_traits<Scalar>::type PacketScalar;
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 184 EIGEN_STRONG_INLINE const PacketScalar packet(Index row, Index col) const
186 PacketScalar res;
189 _LhsNested, _RhsNested, PacketScalar, LoadMode>
279 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::PacketScalar &pres)
290 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::PacketScalar &pres)
299 typedef typename Lhs::PacketScalar Packet;
  /external/eigen/bench/
benchVecAdd.cpp 93 typedef internal::packet_traits<Scalar>::type PacketScalar;
95 PacketScalar a0, a1, a2, a3, b0, b1, b2, b3;
  /external/eigen/Eigen/src/Core/util/
Macros.h 365 typedef typename Base::PacketScalar PacketScalar; \
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 31 typedef typename internal::packet_traits<Scalar>::type PacketScalar;

Completed in 293 milliseconds