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

  /external/eigen/Eigen/src/SparseCore/
MappedSparseMatrix.h 59 inline const Index* innerIndexPtr() const { return m_innerIndices; }
60 inline Index* innerIndexPtr() { return m_innerIndices; }
106 inline MappedSparseMatrix(Index rows, Index cols, Index nnz, Index* outerIndexPtr, Index* innerIndexPtr, Scalar* valuePtr)
108 m_innerIndices(innerIndexPtr), m_values(valuePtr)
132 inline Index index() const { return m_matrix.innerIndexPtr()[m_id]; }
163 inline Index index() const { return m_matrix.innerIndexPtr()[m_id-1]; }
SparseBlock.h 237 inline const Index* innerIndexPtr() const
238 { return m_matrix.innerIndexPtr() + m_matrix.outerIndexPtr()[m_outerStart]; }
239 inline Index* innerIndexPtr()
240 { return m_matrix.const_cast_derived().innerIndexPtr() + m_matrix.outerIndexPtr()[m_outerStart]; }
SparseSelfAdjointView.h 352 dest.innerIndexPtr()[k] = StorageOrderMatch ? ip : jp;
358 dest.innerIndexPtr()[k] = ip;
366 dest.innerIndexPtr()[k] = ip;
369 dest.innerIndexPtr()[k] = jp;
427 dest.innerIndexPtr()[k] = int(DstUpLo)==int(Lower) ? (std::max)(ip,jp) : (std::min)(ip,jp);
SparseVector.h 85 EIGEN_STRONG_INLINE const Index* innerIndexPtr() const { return &m_data.index(0); }
86 EIGEN_STRONG_INLINE Index* innerIndexPtr() { return &m_data.index(0); }
SparseMatrix.h 130 * \sa innerIndexPtr(), outerIndexPtr() */
134 * \sa innerIndexPtr(), outerIndexPtr() */
140 inline const Index* innerIndexPtr() const { return &m_data.index(0); }
144 inline Index* innerIndexPtr() { return &m_data.index(0); }
148 * \sa valuePtr(), innerIndexPtr() */
152 * \sa valuePtr(), innerIndexPtr() */
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
RandomSetter.h 278 while ( (i >= posStart) && (mp_target->innerIndexPtr()[i] > inner) )
281 mp_target->innerIndexPtr()[i+1] = mp_target->innerIndexPtr()[i];
284 mp_target->innerIndexPtr()[i+1] = inner;
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 306 m_innerIndexPtr = m_copyMatrix.innerIndexPtr();
312 m_innerIndexPtr = mat.innerIndexPtr();
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 97 ++mat.innerIndexPtr()[i];
112 --mat.innerIndexPtr()[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/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/Eigen/src/SuperLUSupport/
SuperLUSupport.h 188 res.storage.innerInd = mat.derived().innerIndexPtr();
247 res.storage.innerInd = mat.innerIndexPtr();
708 int* Lrow = m_l.innerIndexPtr();
712 int* Urow = m_u.innerIndexPtr();
788 eigen_assert(m_u.innerIndexPtr()[lastId]<=j);
789 if (m_u.innerIndexPtr()[lastId]==j)
  /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/Eigen/src/CholmodSupport/
CholmodSupport.h 60 res.i = mat.innerIndexPtr();
  /external/eigen/Eigen/src/OrderingMethods/
Amd.h 126 Index* Ci = C.innerIndexPtr();
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 756 Index* Li = m_matrix.innerIndexPtr();

Completed in 951 milliseconds