Home
last modified time | relevance | path

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

12

/external/eigen/Eigen/src/Core/
DArrayWrapper.h68 return m_expression.const_cast_derived().coeffRef(row, col);
73 return m_expression.const_cast_derived().coeffRef(row, col);
83 return m_expression.const_cast_derived().coeffRef(index);
88 return m_expression.const_cast_derived().coeffRef(index);
100 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
112 m_expression.const_cast_derived().template writePacket<LoadMode>(index, x);
181 return m_expression.const_cast_derived().coeffRef(row, col);
196 return m_expression.const_cast_derived().coeffRef(index);
201 return m_expression.const_cast_derived().coeffRef(index);
213 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
[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(row, col);
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();
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);
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();
DDiagonal.h97 …inline ScalarWithConstIfNotLvalue* data() { return &(m_matrix.const_cast_derived().coeffRef(rowOff…
98 …inline const Scalar* data() const { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), c…
103 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
108 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
119 return m_matrix.const_cast_derived().coeffRef(index+rowOffset(), index+colOffset());
124 return m_matrix.const_cast_derived().coeffRef(index+rowOffset(), index+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,…
DCwiseUnaryView.h83 nestedExpression() { return m_matrix.const_cast_derived(); }
124 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
129 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(index));
DTranspose.h78 nestedExpression() { return m_matrix.const_cast_derived(); }
123 return derived().nestedExpression().const_cast_derived().coeffRef(col, row);
129 return derived().nestedExpression().const_cast_derived().coeffRef(index);
161 derived().nestedExpression().const_cast_derived().template writePacket<LoadMode>(col, row, x);
173 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…
DBlock.h158 return m_xpr.const_cast_derived()
176 return m_xpr.const_cast_derived()
183 return m_xpr.const_cast_derived()
205 m_xpr.const_cast_derived().template writePacket<Unaligned>
220 m_xpr.const_cast_derived().template writePacket<Unaligned>
DEigenBase.h38 inline Derived& const_cast_derived() const in const_cast_derived() function
DCwiseUnaryOp.h82 nestedExpression() { return m_xpr.const_cast_derived(); }
DTriangularMatrix.h234 return m_matrix.const_cast_derived().coeffRef(row, col);
271 return m_matrix.const_cast_derived().transpose();
622 >::run(m_matrix.const_cast_derived(), other.derived());
660 >::run(m_matrix.const_cast_derived(), other.derived().nestedExpression());
/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/CholmodSupport/
DCholmodSupport.h96 cholmod_sparse res = viewAsCholmod(mat.const_cast_derived()); in viewAsCholmod()
105 cholmod_sparse res = viewAsCholmod(mat.matrix().const_cast_derived()); in viewAsCholmod()
292 cholmod_dense b_cd = viewAsCholmod(b.const_cast_derived()); in _solve()
/external/eigen/Eigen/src/SparseCore/
DSparseBlock.h235 { return m_matrix.const_cast_derived().valuePtr() + m_matrix.outerIndexPtr()[m_outerStart]; }
240 … { return m_matrix.const_cast_derived().innerIndexPtr() + m_matrix.outerIndexPtr()[m_outerStart]; }
245 { return m_matrix.const_cast_derived().outerIndexPtr() + m_outerStart; }
DSparseSelfAdjointView.h70 _MatrixTypeNested& matrix() { return m_matrix.const_cast_derived(); }
180 m_matrix.const_cast_derived() = tmp.template triangularView<UpLo>();
182 m_matrix.const_cast_derived() += alpha * tmp.template triangularView<UpLo>();
/external/eigen/unsupported/Eigen/src/SparseExtra/
DBlockOfDynamicSparseMatrix.h69 m_matrix.const_cast_derived()._data()[m_outerStart+j].swap(aux._data());
/external/eigen/Eigen/src/Core/products/
DSelfadjointRank2Update.h86 …::run(_expression().const_cast_derived().data(),_expression().outerStride(),actualU,actualV,actual…
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineMatrixBase.h99 inline Derived& const_cast_derived() const { in const_cast_derived() function
/external/eigen/Eigen/src/SuperLUSupport/
DSuperLUSupport.h654 m_sluB = SluMatrix::Map(b.const_cast_derived());
661 m_sluB = SluMatrix::Map(b_cpy.const_cast_derived());
964 m_sluB = SluMatrix::Map(b.const_cast_derived());
971 m_sluB = SluMatrix::Map(b_cpy.const_cast_derived());

12