HomeSort by relevance Sort by last modified time
    Searched refs:m_outerSize (Results 1 - 5 of 5) sorted by null

  /external/eigen/unsupported/Eigen/src/SparseExtra/
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/Eigen/src/SparseCore/
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...]
SparseBlock.h 32 : m_matrix(xpr), m_outerStart(convert_index(i)), m_outerSize(OuterSize)
36 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
39 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); }
40 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); }
47 Index end = m_outerStart + m_outerSize.value();
68 Index blockRows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); }
69 Index blockCols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); }
75 const internal::variable_if_dynamic<Index, OuterSize> m_outerSize;
112 : m_matrix(xpr), m_outerStart(convert_index(i)), m_outerSize(OuterSize)
116 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols)
    [all...]
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::convert_index<StorageIndex>(nnz)), m_outerIndex(outerIndexPtr),
132 : m_outerSize(1), m_innerSize(size), m_zero_nnz(0,internal::convert_index<StorageIndex>(nnz)), m_outerIndex(m_zero_nnz.data()),
  /external/eigen/unsupported/Eigen/src/Skyline/
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...]

Completed in 350 milliseconds