Searched defs:nestedExpression (Results 1 - 11 of 11) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DArrayWrapper.h119 nestedExpression() const function in class:Eigen::ArrayWrapper
229 nestedExpression() const function in class:Eigen::MatrixWrapper
H A DCwiseUnaryOp.h78 nestedExpression() const { return m_xpr; } function in class:Eigen::CwiseUnaryOp
82 nestedExpression() { return m_xpr.const_cast_derived(); } function in class:Eigen::CwiseUnaryOp
103 return derived().functor()(derived().nestedExpression().coeff(row, col));
109 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(row, col));
114 return derived().functor()(derived().nestedExpression().coeff(index));
120 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(index));
H A DCwiseUnaryView.h79 nestedExpression() const { return m_matrix; } function in class:Eigen::CwiseUnaryView
83 nestedExpression() { return m_matrix.const_cast_derived(); } function in class:Eigen::CwiseUnaryView
104 return derived().nestedExpression().innerStride() * sizeof(typename internal::traits<MatrixType>::Scalar) / sizeof(Scalar);
109 return derived().nestedExpression().outerStride();
114 return derived().functor()(derived().nestedExpression().coeff(row, col));
119 return derived().functor()(derived().nestedExpression().coeff(index));
124 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
129 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(index));
H A DDiagonal.h133 nestedExpression() const function in class:Eigen::Diagonal
H A DReplicate.h117 const _MatrixTypeNested& nestedExpression() const function in class:Eigen::Replicate
H A DBlock.h232 const typename internal::remove_all<typename XprType::Nested>::type& nestedExpression() const function in class:Eigen::Block
309 const typename internal::remove_all<typename XprType::Nested>::type& nestedExpression() const function in class:Eigen::Block
H A DReverse.h174 nestedExpression() const function in class:Eigen::Reverse
H A DSelfAdjointView.h101 const MatrixTypeNestedCleaned& nestedExpression() const { return m_matrix; } function in class:Eigen::SelfAdjointView
102 MatrixTypeNestedCleaned& nestedExpression() { return *const_cast<MatrixTypeNestedCleaned*>(&m_matrix); } function in class:Eigen::SelfAdjointView
H A DTranspose.h74 nestedExpression() const { return m_matrix; } function in class:Eigen::Transpose
78 nestedExpression() { return m_matrix.const_cast_derived(); } function in class:Eigen::Transpose
108 inline Index innerStride() const { return derived().nestedExpression().innerStride(); }
109 inline Index outerStride() const { return derived().nestedExpression().outerStride(); }
117 inline ScalarWithConstIfNotLvalue* data() { return derived().nestedExpression().data(); }
118 inline const Scalar* data() const { return derived().nestedExpression().data(); }
123 return derived().nestedExpression().const_cast_derived().coeffRef(col, row);
129 return derived().nestedExpression().const_cast_derived().coeffRef(index);
134 return derived().nestedExpression().coeffRef(col, row);
139 return derived().nestedExpression()
[all...]
H A DTriangularMatrix.h237 const MatrixTypeNestedCleaned& nestedExpression() const { return m_matrix; } function in class:Eigen::TriangularView
238 MatrixTypeNestedCleaned& nestedExpression() { return *const_cast<MatrixTypeNestedCleaned*>(&m_matrix); } function in class:Eigen::TriangularView
248 { return *this = other.nestedExpression(); }
636 other_evaluated.template triangularView<Mode>().lazyAssign(other.derived().nestedExpression());
640 lazyAssign(other.derived().nestedExpression());
660 >::run(m_matrix.const_cast_derived(), other.derived().nestedExpression());
701 >::run(other.derived(), derived().nestedExpression());
/external/eigen/Eigen/src/SparseCore/
H A DSparseTriangularView.h50 inline const MatrixTypeNestedCleaned& nestedExpression() const { return m_matrix; } function in class:Eigen::SparseTriangularView
70 : Base(view.nestedExpression(), outer), m_returnOne(false)
134 : Base(view.nestedExpression(), outer)

Completed in 143 milliseconds