HomeSort by relevance Sort by last modified time
    Searched defs:outerIndexPtr (Results 1 - 3 of 3) sorted by null

  /external/eigen/Eigen/src/SparseCore/
MappedSparseMatrix.h 62 inline const Index* outerIndexPtr() const { return m_outerIndex; }
63 inline Index* outerIndexPtr() { return m_outerIndex; }
106 inline MappedSparseMatrix(Index rows, Index cols, Index nnz, Index* outerIndexPtr, Index* innerIndexPtr, Scalar* valuePtr)
107 : m_outerSize(IsRowMajor?rows:cols), m_innerSize(IsRowMajor?cols:rows), m_nnz(nnz), m_outerIndex(outerIndexPtr),
122 m_id(mat.outerIndexPtr()[outer]),
124 m_end(mat.outerIndexPtr()[outer+1])
153 m_id(mat.outerIndexPtr()[outer+1]),
154 m_start(mat.outerIndexPtr()[outer]),
SparseBlock.h 168 Index nnz_head = m_outerStart==0 ? 0 : matrix.outerIndexPtr()[m_outerStart];
169 Index tail = m_matrix.outerIndexPtr()[m_outerStart+m_outerSize.value()];
215 matrix.outerIndexPtr()[m_outerStart+k] = p;
221 matrix.outerIndexPtr()[k] += offset;
233 { return m_matrix.valuePtr() + m_matrix.outerIndexPtr()[m_outerStart]; }
235 { return m_matrix.const_cast_derived().valuePtr() + m_matrix.outerIndexPtr()[m_outerStart]; }
238 { return m_matrix.innerIndexPtr() + m_matrix.outerIndexPtr()[m_outerStart]; }
240 { return m_matrix.const_cast_derived().innerIndexPtr() + m_matrix.outerIndexPtr()[m_outerStart]; }
242 inline const Index* outerIndexPtr() const
243 { return m_matrix.outerIndexPtr() + m_outerStart;
    [all...]
SparseMatrix.h 130 * \sa innerIndexPtr(), outerIndexPtr() */
134 * \sa innerIndexPtr(), outerIndexPtr() */
139 * \sa valuePtr(), outerIndexPtr() */
143 * \sa valuePtr(), outerIndexPtr() */
149 inline const Index* outerIndexPtr() const { return m_outerIndex; }
153 inline Index* outerIndexPtr() { return m_outerIndex; }
    [all...]

Completed in 69 milliseconds