Searched defs:rowId (Results 1 - 15 of 15) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DCwiseUnaryOp.h101 EIGEN_STRONG_INLINE const Scalar coeff(Index rowId, Index colId) const argument
103 return derived().functor()(derived().nestedExpression().coeff(rowId, colId));
107 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const argument
109 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(rowId, colId));
H A DSwap.h52 inline Scalar& coeffRef(Index rowId, Index colId) argument
54 return m_expression.const_cast_derived().coeffRef(rowId, colId);
62 inline Scalar& coeffRef(Index rowId, Index colId) const argument
64 return m_expression.coeffRef(rowId, colId);
73 void copyCoeff(Index rowId, Index colId, const DenseBase<OtherDerived>& other) argument
76 eigen_internal_assert(rowId >= 0 && rowId < rows()
78 Scalar tmp = m_expression.coeff(rowId, colId);
79 m_expression.coeffRef(rowId, colId) = _other.coeff(rowId, colI
94 copyPacket(Index rowId, Index colId, const DenseBase<OtherDerived>& other) argument
[all...]
H A DArrayWrapper.h61 inline CoeffReturnType coeff(Index rowId, Index colId) const argument
63 return m_expression.coeff(rowId, colId);
66 inline Scalar& coeffRef(Index rowId, Index colId) argument
68 return m_expression.const_cast_derived().coeffRef(rowId, colId);
71 inline const Scalar& coeffRef(Index rowId, Index colId) const argument
73 return m_expression.const_cast_derived().coeffRef(rowId, colId);
92 inline const PacketScalar packet(Index rowId, Index colId) const argument
94 return m_expression.template packet<LoadMode>(rowId, colId);
98 inline void writePacket(Index rowId, Index colId, const PacketScalar& val) argument
100 m_expression.const_cast_derived().template writePacket<LoadMode>(rowId, colI
181 coeff(Index rowId, Index colId) const argument
186 coeffRef(Index rowId, Index colId) argument
191 coeffRef(Index rowId, Index colId) const argument
212 packet(Index rowId, Index colId) const argument
218 writePacket(Index rowId, Index colId, const PacketScalar& val) argument
[all...]
H A DMapBase.h90 inline const Scalar& coeff(Index rowId, Index colId) const argument
92 return m_data[colId * colStride() + rowId * rowStride()];
101 inline const Scalar& coeffRef(Index rowId, Index colId) const argument
103 return this->m_data[colId * colStride() + rowId * rowStride()];
113 inline PacketScalar packet(Index rowId, Index colId) const argument
116 (m_data + (colId * colStride() + rowId * rowStride()));
H A DReplicate.h92 inline Scalar coeff(Index rowId, Index colId) const argument
96 : RowFactor==1 ? rowId
97 : rowId%m_matrix.rows();
105 inline PacketScalar packet(Index rowId, Index colId) const argument
108 : RowFactor==1 ? rowId
109 : rowId%m_matrix.rows();
H A DVisitor.h175 DenseBase<Derived>::minCoeff(IndexType* rowId, IndexType* colId) const argument
179 *rowId = minVisitor.row;
H A DCwiseBinaryOp.h172 EIGEN_STRONG_INLINE const Scalar coeff(Index rowId, Index colId) const argument
174 return derived().functor()(derived().lhs().coeff(rowId, colId),
175 derived().rhs().coeff(rowId, colId));
179 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const argument
181 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(rowId, colId),
182 derived().rhs().template packet<LoadMode>(rowId, colId));
H A DCwiseNullaryOp.h69 EIGEN_STRONG_INLINE const Scalar coeff(Index rowId, Index colId) const argument
71 return m_functor(rowId, colId);
75 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const argument
77 return m_functor.packetOp(rowId, colId);
H A DBlock.h210 inline Scalar& coeffRef(Index rowId, Index colId) argument
214 .coeffRef(rowId + m_startRow.value(), colId + m_startCol.value());
217 inline const Scalar& coeffRef(Index rowId, Index colId) const argument
220 .coeffRef(rowId + m_startRow.value(), colId + m_startCol.value());
223 EIGEN_STRONG_INLINE const CoeffReturnType coeff(Index rowId, Index colId) const argument
225 return m_xpr.coeff(rowId + m_startRow.value(), colId + m_startCol.value());
251 inline PacketScalar packet(Index rowId, Index colId) const argument
254 (rowId + m_startRow.value(), colId + m_startCol.value());
258 inline void writePacket(Index rowId, Index colId, const PacketScalar& val) argument
261 (rowId
[all...]
H A DTranspose.h121 inline ScalarWithConstIfNotLvalue& coeffRef(Index rowId, Index colId) argument
124 return derived().nestedExpression().const_cast_derived().coeffRef(colId, rowId);
133 inline const Scalar& coeffRef(Index rowId, Index colId) const argument
135 return derived().nestedExpression().coeffRef(colId, rowId);
143 inline CoeffReturnType coeff(Index rowId, Index colId) const argument
145 return derived().nestedExpression().coeff(colId, rowId);
154 inline const PacketScalar packet(Index rowId, Index colId) const argument
156 return derived().nestedExpression().template packet<LoadMode>(colId, rowId);
160 inline void writePacket(Index rowId, Index colId, const PacketScalar& x) argument
162 derived().nestedExpression().const_cast_derived().template writePacket<LoadMode>(colId, rowId,
[all...]
H A DPlainObjectBase.h138 EIGEN_STRONG_INLINE const Scalar& coeff(Index rowId, Index colId) const argument
141 return m_storage.data()[colId + rowId * m_storage.cols()];
143 return m_storage.data()[rowId + colId * m_storage.rows()];
151 EIGEN_STRONG_INLINE Scalar& coeffRef(Index rowId, Index colId) argument
154 return m_storage.data()[colId + rowId * m_storage.cols()];
156 return m_storage.data()[rowId + colId * m_storage.rows()];
164 EIGEN_STRONG_INLINE const Scalar& coeffRef(Index rowId, Index colId) const argument
167 return m_storage.data()[colId + rowId * m_storage.cols()];
169 return m_storage.data()[rowId + colId * m_storage.rows()];
179 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Inde argument
196 writePacket(Index rowId, Index colId, const PacketScalar& val) argument
[all...]
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1453 milliseconds