Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Set1

1681 /// Return true if Set1 is a subset of Set2.
1682 template <class S1Ty, class S2Ty> static bool isSubset(S1Ty &Set1, S2Ty &Set2) {
1683 for (typename S1Ty::iterator I = Set1.begin(), E = Set1.end(); I != E; ++I)
1901 /// Return true if Set1 contains elements in Set2. The elements in common
1903 static bool isIntersect(SmallSetVector<SUnit *, 8> &Set1, const NodeSet &Set2,
1906 for (unsigned i = 0, e = Set1.size(); i != e; ++i) {
1907 SUnit *SU = Set1[i];