Home | History | Annotate | Download | only in SparseCore

Lines Matching refs:StorageIndex

27     typedef _StorageIndex StorageIndex;
93 Index realloc_size = (std::min<Index>)(NumTraits<StorageIndex>::highest(), size + Index(reserveSizeFactor*double(size)));
106 m_indices[id] = internal::convert_index<StorageIndex>(i);
115 const StorageIndex* indexPtr() const { return m_indices; }
116 StorageIndex* indexPtr() { return m_indices; }
121 inline StorageIndex& index(Index i) { eigen_internal_assert(m_indices!=0); return m_indices[i]; }
122 inline const StorageIndex& index(Index i) const { eigen_internal_assert(m_indices!=0); return m_indices[i]; }
183 internal::scoped_array<StorageIndex> newIndices(m_allocatedSize);
204 m_indices[id] = internal::convert_index<StorageIndex>(key);
235 internal::scoped_array<StorageIndex> newIndices(size);
248 StorageIndex* m_indices;