Lines Matching defs:overflow
302 // Patch up the name and length for overflow
337 // Assume failure combined with a large exponent was overflow, in
341 // Assume failure combined with a small exponent was overflow.
810 bool overflow = false;
812 overflow = (ival > oneTenthMaxInt64 || (ival == oneTenthMaxInt64 && (unsigned long long)ch > remainderMaxInt64));
814 overflow = (ival > oneTenthMaxInt16 || (ival == oneTenthMaxInt16 && (unsigned short)ch > remainderMaxInt16));
816 overflow = (ival > oneTenthMaxInt || (ival == oneTenthMaxInt && (unsigned)ch > remainderMaxInt));
817 if (overflow) {