Home | History | Annotate | Download | only in Lex

Lines Matching defs:Overflow

141     bool Overflow = false;
146 Overflow |= (ResultChar & 0xF0000000) ? true : false;
153 Overflow = true;
157 // Check for overflow.
158 if (Overflow && Diags) // Too many digits to fit in
179 // Check for overflow. Reject '\777', but not L'\777'.
774 /// matches Val's input width. If there is an overflow, set Val to the low bits
778 // bits per digit in this radix. If we can't possibly overflow a
780 // integer. This avoids the expensive overflow checking below, and
782 // hex/octal values which don't overflow).
790 // for overflow by comparing.
815 // Multiply by radix, did overflow occur on the multiply?
819 // Add value, did overflow occur on the value?
820 // (a + b) ult b <=> overflow
1023 // in this implementation, but warn on overflow.