Lines Matching defs:MAX
498 // [Lower, Upper] is an inverted range, i.e. [MIN, Upper] U [Lower, MAX]
617 const llvm::APSInt &MAX = ValueFactory.getMaxValue(SampleValue);
630 // If the range [From, To] is [MIN, MAX], then result is also [MIN, MAX].
631 if (To == MAX) {
639 if (Last->To() == MAX) {
641 // [MIN, A], ... , [B, MAX]
642 // And the result should be [MIN, -B], ..., [-A, MAX]
653 Result.emplace_back(ValueFactory.getValue(-To), MAX);
765 // the type value set (aka 0 for signeds and MAX/2+1 for unsigneds).