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'.
825 /// matches Val's input width. If there is an overflow, set Val to the low bits
829 // bits per digit in this radix. If we can't possibly overflow a
831 // integer. This avoids the expensive overflow checking below, and
833 // hex/octal values which don't overflow).
841 // for overflow by comparing.
866 // Multiply by radix, did overflow occur on the multiply?
870 // Add value, did overflow occur on the value?
871 // (a + b) ult b <=> overflow
1074 // in this implementation, but warn on overflow.