Lines Matching refs:maxint
703 overflows if and only if B > maxint - A, and A + (B * C) overflows if
704 and only if B > (maxint - A) div C, where maxint is the greatest
705 integer for which maxint + 1 cannot be represented. Refer to
1413 /* maxint is the maximum value of a punycode_uint variable: */
1414 static const punycode_uint maxint = -1;
1415 /* Because maxint is unsigned, -1 becomes the maximum value. */
1487 for (m = maxint, j = 0; j < input_length; ++j) {
1496 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow;
1597 if (digit > (maxint - i) / w) return punycode_overflow;
1602 if (w > maxint / (base - t)) return punycode_overflow;
1611 if (i / (out + 1) > maxint - n) return punycode_overflow;