Home | History | Annotate | Download | only in ADT

Lines Matching defs:compareValues

160     return compareValues(*this, get(RHS)) == 0;
163 return compareValues(*this, get(RHS)) != 0;
166 return compareValues(*this, get(RHS)) <= 0;
169 return compareValues(*this, get(RHS)) >= 0;
172 return compareValues(*this, get(RHS)) < 0;
175 return compareValues(*this, get(RHS)) > 0;
285 return !compareValues(I1, I2);
289 static int compareValues(const APSInt &I1, const APSInt &I2) {
295 return compareValues(I1, I2.extend(I1.getBitWidth()));
297 return compareValues(I1.extend(I2.getBitWidth()), I2);