Home | History | Annotate | Download | only in Support

Lines Matching defs:Lower

11 // for an integral value.  This keeps track of a lower and upper bound for the
13 // keeps track of a [lower, upper) bound, which specifies an interval just like
43 APInt Lower, Upper;
55 /// Lower==Upper and Lower != Min or Max value for its type. It will also
57 ConstantRange(const APInt &Lower, const APInt &Upper);
69 /// getLower - Return the lower value for this range...
71 const APInt &getLower() const { return Lower; }
79 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
112 if (Upper == Lower + 1)
113 return &Lower;
148 return Lower == CR.Lower && Upper == CR.Upper;