Searched refs:m_outerStart (Results 1 – 2 of 2) sorted by relevance
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
D | BlockOfDynamicSparseMatrix.h | 39 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 48 : m_matrix(matrix), m_outerStart(outerStart), m_outerSize(outerSize) 54 : m_matrix(matrix), m_outerStart(outer), m_outerSize(Size) 75 m_matrix.const_cast_derived()._data()[m_outerStart+j].swap(aux._data()); 90 count += m_matrix._data()[m_outerStart+j].size(); 97 eigen_assert(m_matrix.data()[m_outerStart].size()>0); 98 return m_matrix.data()[m_outerStart].vale(m_matrix.data()[m_outerStart].size()-1); 113 Index m_outerStart;
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseBlock.h | 32 : m_matrix(xpr), m_outerStart(convert_index(i)), m_outerSize(OuterSize) in EIGEN_SPARSE_PUBLIC_INTERFACE() 36 …: m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(conver… in BlockImpl() 47 Index end = m_outerStart + m_outerSize.value(); in nonZeros() 48 for(Index j=m_outerStart; j<end; ++j) in nonZeros() 56 …return m_matrix.coeff(row + (IsRowMajor ? m_outerStart : 0), col + (IsRowMajor ? 0 : m_outerStart… in coeff() 61 return m_matrix.coeff(IsRowMajor ? m_outerStart : index, IsRowMajor ? index : m_outerStart); in coeff() 66 Index startRow() const { return IsRowMajor ? m_outerStart : 0; } in startRow() 67 Index startCol() const { return IsRowMajor ? 0 : m_outerStart; } in startCol() 74 Index m_outerStart; variable 112 : m_matrix(xpr), m_outerStart(convert_index(i)), m_outerSize(OuterSize) in sparse_matrix_block_impl() [all …]
|