Searched defs:Set2 (Results 1 - 2 of 2) sorted by relevance

/external/llvm/unittests/ADT/
H A DSparseMultiSetTest.cpp196 USet Set2; local
197 Set2.setUniverse(11);
198 Set2.insert(3);
199 EXPECT_TRUE(!Set2.contains(0));
202 EXPECT_EQ(Set2.getHead(3), Set2.getTail(3));
203 EXPECT_EQ(Set2.getHead(0), Set2.getTail(0));
204 B = Set2.find(3);
205 EXPECT_EQ(Set2
[all...]
/external/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp1681 /// Return true if Set1 is a subset of Set2.
1682 template <class S1Ty, class S2Ty> static bool isSubset(S1Ty &Set1, S2Ty &Set2) { argument
1684 if (Set2.count(*I) == 0)
1901 /// Return true if Set1 contains elements in Set2. The elements in common
1903 static bool isIntersect(SmallSetVector<SUnit *, 8> &Set1, const NodeSet &Set2, argument
1908 if (Set2.count(SU) != 0)

Completed in 91 milliseconds