Searched refs:m_outerSize (Results 1 – 5 of 5) sorted by relevance
/external/eigen/Eigen/src/SparseCore/ |
D | SparseMatrix.h | 127 Index m_outerSize; 136 inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; } 138 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; } 143 inline Index outerSize() const { return m_outerSize; } 254 memset(m_outerIndex, 0, (m_outerSize+1)*sizeof(StorageIndex)); 256 memset(m_innerNonZeros, 0, (m_outerSize)*sizeof(StorageIndex)); 303 … m_innerNonZeros = static_cast<StorageIndex*>(std::malloc(m_outerSize * sizeof(StorageIndex))); 310 for(Index j=0; j<m_outerSize; ++j) 317 StorageIndex previousOuterIndex = m_outerIndex[m_outerSize]; 318 for(Index j=m_outerSize-1; j>=0; --j) [all …]
|
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() 39 …EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows()… in rows() 40 …EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value()… in cols() 47 Index end = m_outerStart + m_outerSize.value(); in nonZeros() 68 Index blockRows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); } in blockRows() 69 Index blockCols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } in blockCols() 75 const internal::variable_if_dynamic<Index, OuterSize> m_outerSize; variable 112 : m_matrix(xpr), m_outerStart(convert_index(i)), m_outerSize(OuterSize) in sparse_matrix_block_impl() 116 …: m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(conver… in sparse_matrix_block_impl() [all …]
|
D | SparseMap.h | 68 Index m_outerSize; 79 inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; } 81 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; } 85 inline Index outerSize() const { return m_outerSize; } 126 …: m_outerSize(IsRowMajor?rows:cols), m_innerSize(IsRowMajor?cols:rows), m_zero_nnz(0,internal::con… 132 …: m_outerSize(1), m_innerSize(size), m_zero_nnz(0,internal::convert_index<StorageIndex>(nnz)), m_o…
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
D | BlockOfDynamicSparseMatrix.h | 48 : m_matrix(matrix), m_outerStart(outerStart), m_outerSize(outerSize) 54 : m_matrix(matrix), m_outerStart(outer), m_outerSize(Size) 72 for (Index j=0; j<m_outerSize.value(); ++j) 89 for (Index j=0; j<m_outerSize.value(); ++j) 107 …EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows()… 108 …EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value()… 114 const internal::variable_if_dynamic<Index, Size> m_outerSize;
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
D | SkylineMatrix.h | 64 Index m_outerSize; 75 return IsRowMajor ? m_outerSize : m_innerSize; 79 return IsRowMajor ? m_innerSize : m_outerSize; 87 return m_outerSize; 378 memset(m_colStartIndex, 0, (m_outerSize + 1) * sizeof (Index)); 379 memset(m_rowStartIndex, 0, (m_outerSize + 1) * sizeof (Index)); 616 m_outerSize = diagSize; 621 m_outerSize = diagSize; 631 : m_outerSize(-1), m_innerSize(0), m_colStartIndex(0), m_rowStartIndex(0) { 636 : m_outerSize(0), m_innerSize(0), m_colStartIndex(0), m_rowStartIndex(0) { [all …]
|