Lines Matching refs:ValueLHS
159 const APSInt &ValueLHS, in areEquivalentRanges() argument
162 assert(APSInt::compareValues(ValueLHS, ValueRHS) <= 0 && in areEquivalentRanges()
165 if (APSInt::compareValues(ValueLHS, ValueRHS) == 0) in areEquivalentRanges()
172 incrementWithoutOverflow(ValueLHS, ValueLHS_plus1) && in areEquivalentRanges()
179 const APSInt &ValueLHS, in areExclusiveRanges() argument
182 assert(APSInt::compareValues(ValueLHS, ValueRHS) <= 0 && in areExclusiveRanges()
186 if (APSInt::compareValues(ValueLHS, ValueRHS) == 0) { in areExclusiveRanges()
213 incrementWithoutOverflow(ValueLHS, ValueLHS_plus1) && in areExclusiveRanges()
223 const APSInt &ValueLHS, in rangesFullyCoverDomain() argument
226 assert(APSInt::compareValues(ValueLHS, ValueRHS) <= 0 && in rangesFullyCoverDomain()
230 if (APSInt::compareValues(ValueLHS, ValueRHS) == 0) { in rangesFullyCoverDomain()
252 incrementWithoutOverflow(ValueLHS, ValueLHS_plus1) && in rangesFullyCoverDomain()
270 const APSInt &ValueLHS, in rangeSubsumesRange() argument
273 int Comparison = APSInt::compareValues(ValueLHS, ValueRHS); in rangeSubsumesRange()