Searched refs:m_xpr (Results 1 – 4 of 4) sorted by relevance
/external/eigen/Eigen/src/Core/ |
D | CommaInitializer.h | 34 : m_xpr(xpr), m_row(0), m_col(1), m_currentBlockRows(1) in CommaInitializer() 36 m_xpr.coeffRef(0,0) = s; in CommaInitializer() 41 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows()) in CommaInitializer() 43 m_xpr.block(0, 0, other.rows(), other.cols()) = other; in CommaInitializer() 49 if (m_col==m_xpr.cols()) 54 eigen_assert(m_row<m_xpr.rows() 57 eigen_assert(m_col<m_xpr.cols() 60 m_xpr.coeffRef(m_row, m_col++) = s; 68 if (m_col==m_xpr.cols()) 73 eigen_assert(m_row+m_currentBlockRows<=m_xpr.rows() [all …]
|
D | Block.h | 110 : m_xpr(xpr), 128 : m_xpr(xpr), m_startRow(startRow), m_startCol(startCol), 141 : m_xpr(xpr), m_startRow(startRow), m_startCol(startCol), 158 return m_xpr.const_cast_derived() 164 return m_xpr.derived() 170 return m_xpr.coeff(row + m_startRow.value(), col + m_startCol.value()); 176 return m_xpr.const_cast_derived() 183 return m_xpr.const_cast_derived() 190 return m_xpr 198 return m_xpr.template packet<Unaligned> [all …]
|
D | CwiseUnaryOp.h | 68 : m_xpr(xpr), m_functor(func) {} 70 EIGEN_STRONG_INLINE Index rows() const { return m_xpr.rows(); } 71 EIGEN_STRONG_INLINE Index cols() const { return m_xpr.cols(); } 78 nestedExpression() const { return m_xpr; } 82 nestedExpression() { return m_xpr.const_cast_derived(); } 85 typename XprType::Nested m_xpr;
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseCwiseBinaryOp.h | 267 : m_xpr(xpr), m_rhsIter(xpr.rhs(),outer), m_functor(xpr.functor()), m_outer(outer) 277 …{ return m_functor(m_xpr.lhs().coeff(IsRowMajor?m_outer:m_rhsIter.index(),IsRowMajor?m_rhsIter.ind… 286 const CwiseBinaryXpr& m_xpr;
|