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

  /external/llvm/include/llvm/ADT/
SparseSet.h 97 /// SparseSet contains a dense vector holding all the objects and a sparse
98 /// array holding indexes into the dense vector. Most of the memory is used by
128 DenseT Dense;
174 const_iterator begin() const { return Dense.begin(); }
175 const_iterator end() const { return Dense.end(); }
176 iterator begin() { return Dense.begin(); }
177 iterator end() { return Dense.end(); }
183 bool empty() const { return Dense.empty(); }
190 size_type size() const { return Dense.size(); }
196 Dense.clear()
    [all...]
SparseMultiSet.h 47 /// SparseMultiSet contains a dense vector holding all the objects and a sparse
48 /// array holding indexes into the dense vector. Most of the memory is used by
63 /// that are inlined in the dense vector. SparseMultiSet is a good choice when
115 DenseT Dense;
123 /// erasure, iterator preservation, and dense size.
144 return Dense[D.Prev].isTail();
152 return &Dense[N.Prev] == &N;
159 Dense.push_back(SMSNode(V, Prev, Next));
160 return Dense.size() - 1;
165 unsigned NextFree = Dense[Idx].Next
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 427 /** The type used to identify a dense storage. */
428 struct Dense {};

Completed in 148 milliseconds