HomeSort by relevance Sort by last modified time
    Searched full:outerindexptr (Results 1 - 16 of 16) 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...]
SparseSelfAdjointView.h 331 dest.outerIndexPtr()[0] = 0;
333 dest.outerIndexPtr()[j+1] = dest.outerIndexPtr()[j] + count[j];
335 count[j] = dest.outerIndexPtr()[j];
407 dest.outerIndexPtr()[0] = 0;
409 dest.outerIndexPtr()[j+1] = dest.outerIndexPtr()[j] + count[j];
410 dest.resizeNonZeros(dest.outerIndexPtr()[size]);
412 count[j] = dest.outerIndexPtr()[j];
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...]
  /external/eigen/test/
sparse_solvers.cpp 64 //Index rows, Index cols, Index nnz, Index* outerIndexPtr, Index* innerIndexPtr, Scalar* valuePtr
65 MappedSparseMatrix<Scalar> mm2(rows, cols, cm2.nonZeros(), cm2.outerIndexPtr(), cm2.innerIndexPtr(), cm2.valuePtr());
  /external/eigen/unsupported/Eigen/src/SparseExtra/
RandomSetter.h 256 mp_target->outerIndexPtr()[j] = count;
261 mp_target->outerIndexPtr()[mp_target->outerSize()] = count;
276 Index posStart = mp_target->outerIndexPtr()[outer];
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 305 m_outerIndexPtr = m_copyMatrix.outerIndexPtr();
311 m_outerIndexPtr = mat.outerIndexPtr();
361 umfpack_get_numeric(m_l.outerIndexPtr(), m_l.innerIndexPtr(), m_l.valuePtr(),
362 m_u.outerIndexPtr(), m_u.innerIndexPtr(), m_u.valuePtr(),
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 91 if ( !(mat.outerIndexPtr()[0]) )
95 ++mat.outerIndexPtr()[i];
106 if ( mat.outerIndexPtr()[0] == 1 )
110 --mat.outerIndexPtr()[i];
363 internal::eigen_pastix(&m_pastixdata, MPI_COMM_WORLD, m_size, mat.outerIndexPtr(), mat.innerIndexPtr(),
388 internal::eigen_pastix(&m_pastixdata, MPI_COMM_WORLD, m_size, mat.outerIndexPtr(), mat.innerIndexPtr(),
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 189 res.storage.outerInd = mat.derived().outerIndexPtr();
248 res.storage.outerInd = mat.outerIndexPtr();
707 int* Lcol = m_l.outerIndexPtr();
711 int* Ucol = m_u.outerIndexPtr();
785 if (m_u.outerIndexPtr()[j+1]-m_u.outerIndexPtr()[j] > 0)
787 int lastId = m_u.outerIndexPtr()[j+1]-1;
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 319 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr(),
342 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr(),
362 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr(),
406 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr(),
  /external/eigen/bench/
spmv.cpp 29 // lhs._valuePtr(), lhs._innerIndexPtr(), lhs.outerIndexPtr(),
sparse_product.cpp 54 // lhs._valuePtr(), lhs._innerIndexPtr(), lhs.outerIndexPtr(),
  /external/eigen/doc/
SparseQuickReference.dox 164 sm1.outerIndexPtr();
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 59 res.p = mat.outerIndexPtr();
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 731 Index* Lp = m_matrix.outerIndexPtr();
755 const Index* Lp = m_matrix.outerIndexPtr();
  /external/eigen/Eigen/src/OrderingMethods/
Amd.h 125 Index* Cp = C.outerIndexPtr();

Completed in 441 milliseconds