Home
last modified time | relevance | path

Searched refs:maxint (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/unbound/sldns/
H A Dparseutil.c217 const uint32_t maxint = 0xffffffff; in sldns_str2period() local
241 if(seconds > maxint-i) { in sldns_str2period()
250 if(i > maxint/60 || seconds > maxint-(i*60)) { in sldns_str2period()
259 if(i > maxint/(60*60) || seconds > maxint-(i*60*60)) { in sldns_str2period()
268 if(i > maxint/(60*60*24) || seconds > maxint-(i*60*60*24)) { in sldns_str2period()
277 if(i > maxint/(60*60*24*7) || seconds > maxint-(i*60*60*24*7)) { in sldns_str2period()
294 if(i > maxint/10 || i*10 > maxint - (**endptr - '0')) { in sldns_str2period()
302 if(seconds > maxint-i) { in sldns_str2period()
311 if(seconds > maxint-i) { in sldns_str2period()
/freebsd/crypto/openssl/crypto/
H A Dpunycode.c23 static const unsigned int maxint = 0xFFFFFFFF; variable
163 if ((unsigned int)digit > (maxint - i) / w) in ossl_punycode_decode()
172 if (w > maxint / (base - t)) in ossl_punycode_decode()
178 if (i / (written_out + 1) > maxint - n) in ossl_punycode_decode()
/freebsd/crypto/heimdal/lib/wind/
H A Drfc3492.txt703 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;
[all …]