Home
last modified time | relevance | path

Searched refs:const_cast_derived (Results 1 – 25 of 46) sorted by relevance

12

/external/eigen/Eigen/src/Core/
DArrayWrapper.h63 inline ScalarWithConstIfNotLvalue* data() { return m_expression.const_cast_derived().data(); }
73 return m_expression.const_cast_derived().coeffRef(rowId, colId);
78 return m_expression.const_cast_derived().coeffRef(rowId, colId);
88 return m_expression.const_cast_derived().coeffRef(index);
93 return m_expression.const_cast_derived().coeffRef(index);
105 m_expression.const_cast_derived().template writePacket<LoadMode>(rowId, colId, val);
117 m_expression.const_cast_derived().template writePacket<LoadMode>(index, val);
131 void resize(Index newSize) { m_expression.const_cast_derived().resize(newSize); }
134 …void resize(Index nbRows, Index nbCols) { m_expression.const_cast_derived().resize(nbRows,nbCols);…
188 inline ScalarWithConstIfNotLvalue* data() { return m_expression.const_cast_derived().data(); }
[all …]
DFlagged.h70 return m_matrix.const_cast_derived().coeffRef(row, col);
75 return m_matrix.const_cast_derived().coeffRef(index);
80 return m_matrix.const_cast_derived().coeffRef(row, col);
85 return m_matrix.const_cast_derived().coeffRef(index);
97 m_matrix.const_cast_derived().template writePacket<LoadMode>(row, col, x);
109 m_matrix.const_cast_derived().template writePacket<LoadMode>(index, x);
DSwap.h54 return m_expression.const_cast_derived().coeffRef(rowId, colId);
59 return m_expression.const_cast_derived().coeffRef(index);
75 OtherDerived& _other = other.const_cast_derived();
86 OtherDerived& _other = other.const_cast_derived();
96 OtherDerived& _other = other.const_cast_derived();
109 OtherDerived& _other = other.const_cast_derived();
DSelfCwiseBinaryOp.h68 return m_matrix.const_cast_derived().coeffRef(row, col);
80 return m_matrix.const_cast_derived().coeffRef(index);
84 return m_matrix.const_cast_derived().coeffRef(index);
90 OtherDerived& _other = other.const_cast_derived();
100 OtherDerived& _other = other.const_cast_derived();
109 OtherDerived& _other = other.const_cast_derived();
119 OtherDerived& _other = other.const_cast_derived();
DNestByValue.h57 return m_expression.const_cast_derived().coeffRef(row, col);
67 return m_expression.const_cast_derived().coeffRef(index);
79 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
91 m_expression.const_cast_derived().template writePacket<LoadMode>(index, x);
DDiagonal.h98 …inline ScalarWithConstIfNotLvalue* data() { return &(m_matrix.const_cast_derived().coeffRef(rowOff…
99 …inline const Scalar* data() const { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), c…
104 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
109 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
120 return m_matrix.const_cast_derived().coeffRef(idx+rowOffset(), idx+colOffset());
125 return m_matrix.const_cast_derived().coeffRef(idx+rowOffset(), idx+colOffset());
DForceAlignedAccess.h56 return m_expression.const_cast_derived().coeffRef(row, col);
66 return m_expression.const_cast_derived().coeffRef(index);
78 m_expression.const_cast_derived().template writePacket<Aligned>(row, col, x);
90 m_expression.const_cast_derived().template writePacket<Aligned>(index, x);
DReverse.h118 return m_matrix.const_cast_derived().coeffRef(ReverseRow ? m_matrix.rows() - row - 1 : row,
135 return m_matrix.const_cast_derived().coeffRef(m_matrix.size() - index - 1);
155 m_matrix.const_cast_derived().template writePacket<LoadMode>(
170 …m_matrix.const_cast_derived().template writePacket<LoadMode>(m_matrix.size() - index - PacketSize,…
DTranspose.h78 nestedExpression() { return m_matrix.const_cast_derived(); }
124 return derived().nestedExpression().const_cast_derived().coeffRef(colId, rowId);
130 return derived().nestedExpression().const_cast_derived().coeffRef(index);
162 … derived().nestedExpression().const_cast_derived().template writePacket<LoadMode>(colId, rowId, x);
174 derived().nestedExpression().const_cast_derived().template writePacket<LoadMode>(index, x);
DSelfAdjointView.h95 return m_matrix.const_cast_derived().coeffRef(row, col);
172 m_matrix.const_cast_derived().template triangularView<UpLo>() = other;
173 m_matrix.const_cast_derived().template triangularView<OtherPart>() = other.adjoint();
182 m_matrix.const_cast_derived().template triangularView<UpLo>() = other.toDenseMatrix();
183 …m_matrix.const_cast_derived().template triangularView<OtherPart>() = other.toDenseMatrix().adjoint…
DCwiseUnaryView.h83 nestedExpression() { return m_matrix.const_cast_derived(); }
128 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
133 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(index));
DBlock.h213 return m_xpr.const_cast_derived()
231 return m_xpr.const_cast_derived()
238 return m_xpr.const_cast_derived()
260 m_xpr.const_cast_derived().template writePacket<Unaligned>
275 m_xpr.const_cast_derived().template writePacket<Unaligned>
DEigenBase.h38 inline Derived& const_cast_derived() const in const_cast_derived() function
DGeneralProduct.h271 …e Src> void operator()(const Dst& dst, const Src& src) const { dst.const_cast_derived() = src; } …
272 …e Src> void operator()(const Dst& dst, const Src& src) const { dst.const_cast_derived() += src; } …
273 …e Src> void operator()(const Dst& dst, const Src& src) const { dst.const_cast_derived() -= src; } …
278 dst.const_cast_derived() += m_scale * src;
DCwiseUnaryOp.h82 nestedExpression() { return m_xpr.const_cast_derived(); }
/external/eigen/Eigen/src/Eigen2Support/
DCwiseOperators.h75 return m_matrix.const_cast_derived() = *this * other;
83 return m_matrix.const_cast_derived() = *this / other;
278 return m_matrix.const_cast_derived() = *this + scalar;
293 return m_matrix.const_cast_derived() = *this - scalar;
DMinor.h76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col));
/external/eigen/Eigen/src/Householder/
DBlockHouseholder.h33 vectors.const_cast_derived().coeffRef(i,i) = Scalar(1); in make_block_householder_triangular_factor()
36 vectors.const_cast_derived().coeffRef(i, i) = Vii; in make_block_householder_triangular_factor()
/external/eigen/Eigen/src/SparseCore/
DSparseBlock.h207 { return m_matrix.const_cast_derived().valuePtr() + m_matrix.outerIndexPtr()[m_outerStart]; } in valuePtr()
212 … { return m_matrix.const_cast_derived().innerIndexPtr() + m_matrix.outerIndexPtr()[m_outerStart]; } in innerIndexPtr()
217 { return m_matrix.const_cast_derived().outerIndexPtr() + m_outerStart; } in outerIndexPtr()
412 return m_matrix.const_cast_derived() in coeffRef()
423 return m_matrix.const_cast_derived() in coeffRef()
DSparseSelfAdjointView.h70 _MatrixTypeNested& matrix() { return m_matrix.const_cast_derived(); }
204 m_matrix.const_cast_derived() = tmp.template triangularView<UpLo>();
206 m_matrix.const_cast_derived() += alpha * tmp.template triangularView<UpLo>();
/external/eigen/Eigen/src/CholmodSupport/
DCholmodSupport.h101 cholmod_sparse res = viewAsCholmod(mat.const_cast_derived()); in viewAsCholmod()
110 cholmod_sparse res = viewAsCholmod(mat.matrix().const_cast_derived()); in viewAsCholmod()
301 Rhs& b_ref(b.const_cast_derived()); in _solve()
/external/eigen/unsupported/Eigen/src/SparseExtra/
DBlockOfDynamicSparseMatrix.h75 m_matrix.const_cast_derived()._data()[m_outerStart+j].swap(aux._data());
/external/eigen/Eigen/src/SuperLUSupport/
DSuperLUSupport.h655 m_sluB = SluMatrix::Map(b.const_cast_derived());
662 m_sluB = SluMatrix::Map(b_cpy.const_cast_derived());
965 m_sluB = SluMatrix::Map(b.const_cast_derived());
972 m_sluB = SluMatrix::Map(b_cpy.const_cast_derived());
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineMatrixBase.h99 inline Derived& const_cast_derived() const { in const_cast_derived() function
/external/eigen/Eigen/src/Core/products/
DSelfadjointRank2Update.h86 …::run(_expression().const_cast_derived().data(),_expression().outerStride(),actualU,actualV,actual…

12