HomeSort by relevance Sort by last modified time
    Searched refs:const_cast_derived (Results 1 - 25 of 41) sorted by null

1 2

  /external/eigen/Eigen/src/Core/
Flagged.h 70 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);
NestByValue.h 57 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);
ArrayWrapper.h 68 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...]
Swap.h 54 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();
ForceAlignedAccess.h 56 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);
SelfCwiseBinaryOp.h 68 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();
Diagonal.h 97 inline ScalarWithConstIfNotLvalue* data() { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), colOffset())); }
98 inline const Scalar* data() const { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), colOffset())); }
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());
CwiseUnaryView.h 83 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));
Reverse.h 118 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, internal::preverse(x));
SelfAdjointView.h 95 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();
Transpose.h 78 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);
Block.h 158 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>
CwiseUnaryOp.h 82 nestedExpression() { return m_xpr.const_cast_derived(); }
EigenBase.h 38 inline Derived& const_cast_derived() const function in struct:Eigen::EigenBase
ArrayBase.h 70 using Base::const_cast_derived;
TriangularMatrix.h 234 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/Householder/
BlockHouseholder.h 33 vectors.const_cast_derived().coeffRef(i,i) = Scalar(1);
36 vectors.const_cast_derived().coeffRef(i, i) = Vii;
  /external/eigen/Eigen/src/Eigen2Support/
CwiseOperators.h 75 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;
Minor.h 76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col));
  /external/eigen/unsupported/Eigen/src/SparseExtra/
BlockOfDynamicSparseMatrix.h 69 m_matrix.const_cast_derived()._data()[m_outerStart+j].swap(aux._data());
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 96 cholmod_sparse res = viewAsCholmod(mat.const_cast_derived());
105 cholmod_sparse res = viewAsCholmod(mat.matrix().const_cast_derived());
292 cholmod_dense b_cd = viewAsCholmod(b.const_cast_derived());
  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 235 { 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; }
SparseSelfAdjointView.h 70 _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/Eigen/src/Core/products/
SelfadjointRank2Update.h 86 ::run(_expression().const_cast_derived().data(),_expression().outerStride(),actualU,actualV,actualAlpha);
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 99 inline Derived& const_cast_derived() const { function in class:Eigen::SkylineMatrixBase

Completed in 354 milliseconds

1 2