/external/eigen/Eigen/src/Core/ |
CommaInitializer.h | 34 : m_xpr(xpr), m_row(0), m_col(1), m_currentBlockRows(1) 36 m_xpr.coeffRef(0,0) = s; 41 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows()) 43 m_xpr.block(0, 0, other.rows(), other.cols()) = other; 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...] |
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 249 const typename XprType::Nested m_xpr; member in class:Eigen::Block 351 typename XprType::Nested m_xpr; member in class:Eigen::Block [all...] |
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; member in class:Eigen::CwiseUnaryOp
|
/external/eigen/Eigen/src/SparseCore/ |
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.index():m_outer), m_rhsIter.value()); } 286 const CwiseBinaryXpr& m_xpr; member in class:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector
|