Home | History | Annotate | Download | only in Support

Lines Matching defs:RHS

25     bool operator < (const APInt& RHS) const { return ult(RHS); }
26 bool operator > (const APInt& RHS) const { return ugt(RHS); }
27 bool operator <= (const APInt& RHS) const { return ule(RHS); }
28 bool operator >= (const APInt& RHS) const { return uge(RHS); }
187 const unsigned_ranges RHS,
206 Ranges.push_back(Range(Int(RHS[i][0]), Int(RHS[i][1])));
255 unsigned_ranges RHS = { { 3, 14 } };
259 TestDiff(LHS, 3, RHS, 1, ExcludeRes, 2, IntersectRes, 3);
264 unsigned_ranges RHS = { { 0, 4 }, { 13, 17 } };
268 TestDiff(LHS, 3, RHS, 2, ExcludeRes, 1, IntersectRes, 2);
273 unsigned_ranges RHS = { { 1, 5 }, { 10, 12 }, { 15, 16 } };
278 TestDiff(LHS, 1, RHS, 3, ExcludeRes, 4, IntersectRes, 3);
283 unsigned_ranges RHS = { { 0, 5 } };
287 TestDiff(LHS, 1, RHS, 1, ExcludeRes, 0, IntersectRes, 1);
292 unsigned_ranges RHS = { { 7, 8 } };
296 TestDiff(LHS, 1, RHS, 1, ExcludeRes, 1, IntersectRes, 0);
301 unsigned_ranges RHS = { { 1, 4 } };
305 TestDiff(LHS, 1, RHS, 1, ExcludeRes, 1, IntersectRes, 1);
310 unsigned_ranges RHS = { { 0, 5 }, { 6, 9 } };
314 TestDiff(LHS, 1, RHS, 2, ExcludeRes, 0, IntersectRes, 2);
319 unsigned_ranges RHS = { { 4, 4 } };
323 TestDiff(LHS, 1, RHS, 1, ExcludeRes, 1, IntersectRes, 0);