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
123 DenseT Dense;
169 const_iterator begin() const { return Dense.begin(); }
170 const_iterator end() const { return Dense.end(); }
171 iterator begin() { return Dense.begin(); }
172 iterator end() { return Dense.end(); }
178 bool empty() const { return Dense.empty(); }
185 unsigned size() const { return Dense.size(); }
191 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
111 DenseT Dense;
119 /// erasure, iterator preservation, and dense size.
140 return Dense[D.Prev].isTail();
148 return &Dense[N.Prev] == &N;
155 Dense.push_back(SMSNode(V, Prev, Next));
156 return Dense.size() - 1;
161 unsigned NextFree = Dense[Idx].Next
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 420 /** The type used to identify a dense storage. */
421 struct Dense {};

Completed in 322 milliseconds