Home
last modified time | relevance | path

Searched refs:SparseSet (Results 1 – 16 of 16) sorted by relevance

/external/llvm/include/llvm/ADT/
DSparseSet.h120 class SparseSet {
136 SparseSet(const SparseSet&) = delete;
137 SparseSet &operator=(const SparseSet&) = delete;
146 SparseSet() : Sparse(nullptr), Universe(0) {}
147 ~SparseSet() { free(Sparse); }
229 return const_cast<SparseSet*>(this)->findIndex(KeyIndexOf(Key));
/external/regex-re2/util/
Dsparse_set.h54 class SparseSet {
56 SparseSet() in SparseSet() function
59 SparseSet(int max_size) { in SparseSet() function
75 ~SparseSet() { in ~SparseSet()
174 DISALLOW_EVIL_CONSTRUCTORS(SparseSet);
/external/llvm/include/llvm/CodeGen/
DLivePhysRegs.h45 SparseSet<unsigned> LiveRegs;
129 typedef SparseSet<unsigned>::const_iterator const_iterator;
DRegisterPressure.h202 SparseSet<unsigned> Regs;
297 SparseSet<unsigned, VirtReg2IndexFunctor> UntiedDefs;
DScheduleDAGInstrs.h77 typedef SparseSet<VReg2SUnit, VirtReg2IndexFunctor> VReg2SUnitMap;
/external/llvm/unittests/ADT/
DSparseSetTest.cpp17 typedef SparseSet<unsigned> USet;
168 typedef SparseSet<Alt> ASet; in TEST()
/external/llvm/lib/CodeGen/
DMachineTraceMetrics.cpp692 SparseSet<LiveRegUnit> &RegUnits, in updatePhysDepsDownwards()
717 SparseSet<LiveRegUnit>::iterator I = RegUnits.find(*Units); in updatePhysDepsDownwards()
793 SparseSet<LiveRegUnit> RegUnits; in computeInstrDepths()
865 SparseSet<LiveRegUnit> &RegUnits, in updatePhysDepsUpwards()
886 SparseSet<LiveRegUnit>::iterator I = RegUnits.find(*Units); in updatePhysDepsUpwards()
993 SparseSet<LiveRegUnit> RegUnits; in computeInstrHeights()
1114 for (SparseSet<LiveRegUnit>::const_iterator in computeInstrHeights()
DLivePhysRegs.cpp31 SparseSet<unsigned>::iterator LRI = LiveRegs.begin(); in removeRegsInMask()
DEarlyIfConversion.cpp134 SparseSet<unsigned> LiveRegUnits;
318 for (SparseSet<unsigned>::const_iterator in findInsertionPoint()
DRegAllocFast.cpp85 typedef SparseSet<LiveReg> LiveRegMap;
117 typedef SparseSet<unsigned> UsedInInstrSet;
DScheduleDAGInstrs.cpp1396 SparseSet<RootData> RootSet;
1483 for (SparseSet<RootData>::const_iterator in finalize()
/external/regex-re2/re2/
Ddfa.cc384 class DFA::Workq : public SparseSet {
388 SparseSet(n+maxmark), in Workq()
400 SparseSet::clear(); in clear()
408 SparseSet::insert_new(nextmark_++); in mark()
423 SparseSet::insert_new(id); in insert_new()
Dprog.cc127 typedef SparseSet Workq;
Donepass.cc348 typedef SparseSet Instq;
Dnfa.cc629 typedef SparseSet Workq; in ComputeFirstByte()
/external/llvm/docs/
DProgrammersManual.rst1155 llvm/ADT/SparseSet.h
1158 SparseSet holds a small number of objects identified by unsigned keys of
1163 SparseSet is useful for algorithms that need very fast clear/find/insert/erase
1172 SparseMultiSet adds multiset behavior to SparseSet, while retaining SparseSet's
1173 desirable attributes. Like SparseSet, it typically uses a lot of memory, but