Home
last modified time | relevance | path

Searched refs:m_startCol (Results 1 – 2 of 2) sorted by relevance

/external/eigen/Eigen/src/Core/
DBlock.h186 m_startCol( (BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) ? i : 0),
194 : m_xpr(xpr), m_startRow(a_startRow), m_startCol(a_startCol),
203 : m_xpr(xpr), m_startRow(a_startRow), m_startCol(a_startCol),
214 .coeffRef(rowId + m_startRow.value(), colId + m_startCol.value());
220 .coeffRef(rowId + m_startRow.value(), colId + m_startCol.value());
225 return m_xpr.coeff(rowId + m_startRow.value(), colId + m_startCol.value());
233 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
240 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
247 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
254 (rowId + m_startRow.value(), colId + m_startCol.value());
[all …]
/external/eigen/Eigen/src/SparseCore/
DSparseBlock.h396 m_startCol( (BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) ? i : 0), in BlockImpl()
404 …: m_matrix(xpr), m_startRow(startRow), m_startCol(startCol), m_blockRows(blockRows), m_blockCols(b… in BlockImpl()
413 .coeffRef(row + m_startRow.value(), col + m_startCol.value()); in coeffRef()
418 return m_matrix.coeff(row + m_startRow.value(), col + m_startCol.value()); in coeff()
425 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0)); in coeffRef()
432 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0)); in coeff()
445 …().nestedExpression(), outer + (IsRowMajor ? block.m_startRow.value() : block.m_startCol.value())), in InnerIterator()
447 …m_end(IsRowMajor ? block.m_startCol.value()+block.m_blockCols.value() : block.m_startRow.value()+b… in InnerIterator()
449 …while( (Base::operator bool()) && (Base::index() < (IsRowMajor ? m_block.m_startCol.value() : m_bl… in InnerIterator()
453 …inline Index index() const { return Base::index() - (IsRowMajor ? m_block.m_startCol.value() : m_… in index()
[all …]