Home
last modified time | relevance | path

Searched refs:tmax (Results 1 – 13 of 13) sorted by relevance

/netbsd/src/crypto/external/bsd/openssl/dist/crypto/
Dpunycode.c18 static const unsigned int tmax = 26; variable
51 while (delta > ((base - tmin) * tmax) / 2) { in adapt()
167 t = (k <= bias) ? tmin : (k >= bias + tmax) ? tmax : k - bias; in ossl_punycode_decode()
/netbsd/src/external/bsd/ntp/dist/sntp/libopts/
Dintprops.h424 #define _GL_INT_OP_CALC(a, b, r, op, overflow, ut, t, tmin, tmax) \ argument
426 ? _GL_INT_OP_CALC1 ((t) (a), (t) (b), r, op, overflow, ut, t, tmin, tmax) \
427 : _GL_INT_OP_CALC1 (a, b, r, op, overflow, ut, t, tmin, tmax))
428 #define _GL_INT_OP_CALC1(a, b, r, op, overflow, ut, t, tmin, tmax) \ argument
431 || (tmax) < ((a) op (b))) \
/netbsd/src/lib/libc/rpc/
Dsvc_vc.c755 struct timeval tv, tdiff, tmax; in __svc_clean_idle() local
759 tmax.tv_sec = tmax.tv_usec = 0; in __svc_clean_idle()
785 if (timercmp(&tdiff, &tmax, >)) { in __svc_clean_idle()
786 tmax = tdiff; in __svc_clean_idle()
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/wind/
Drfc3492.txt330 terms of the constants base, tmin, and tmax, and a state variable
334 clamped to the range tmin through tmax
344 or greater than tmax, then t(j) = tmin or tmax, respectively. (In
376 while delta > ((base - tmin) * tmax) div 2
387 t(j) is set to tmax for the more significant digits starting with
390 between tmin and tmax for the digit expected to be second-last
416 The remaining five parameters (tmin, tmax, skew, damp, and the
419 0 <= tmin <= tmax <= base-1
428 make sure that the code points corresponding to 0 through tmax-1 all
437 tmax = 26
[all …]
/netbsd/src/external/gpl3/gdb/dist/bfd/
Delf32-frv.c935 bfd_signed_vma tmax, tcur, tmin; member
4788 gad->tmax = gad->max + tlsd; in _frvfdpic_compute_got_alloc_data()
4794 if ((bfd_vma) gad->tmax > wrap) in _frvfdpic_compute_got_alloc_data()
4796 bfd_vma wrapsize = gad->tmax - wrap; in _frvfdpic_compute_got_alloc_data()
4802 gad->tmax -= wrapsize; in _frvfdpic_compute_got_alloc_data()
4825 if (fdplt && (bfd_vma) gad->tmax < wrap) in _frvfdpic_compute_got_alloc_data()
4829 if ((bfd_vma) (wrap - gad->tmax) < fdplt) in _frvfdpic_compute_got_alloc_data()
4830 fds = wrap - gad->tmax; in _frvfdpic_compute_got_alloc_data()
4836 gad->tmax += fds; in _frvfdpic_compute_got_alloc_data()
4863 if (tlsdplt && (bfd_vma) gad->tmax < wrap - tdescsz / 2) in _frvfdpic_compute_got_alloc_data()
[all …]
/netbsd/src/external/gpl3/binutils/dist/bfd/
Delf32-frv.c935 bfd_signed_vma tmax, tcur, tmin; member
4788 gad->tmax = gad->max + tlsd; in _frvfdpic_compute_got_alloc_data()
4794 if ((bfd_vma) gad->tmax > wrap) in _frvfdpic_compute_got_alloc_data()
4796 bfd_vma wrapsize = gad->tmax - wrap; in _frvfdpic_compute_got_alloc_data()
4802 gad->tmax -= wrapsize; in _frvfdpic_compute_got_alloc_data()
4825 if (fdplt && (bfd_vma) gad->tmax < wrap) in _frvfdpic_compute_got_alloc_data()
4829 if ((bfd_vma) (wrap - gad->tmax) < fdplt) in _frvfdpic_compute_got_alloc_data()
4830 fds = wrap - gad->tmax; in _frvfdpic_compute_got_alloc_data()
4836 gad->tmax += fds; in _frvfdpic_compute_got_alloc_data()
4863 if (tlsdplt && (bfd_vma) gad->tmax < wrap - tdescsz / 2) in _frvfdpic_compute_got_alloc_data()
[all …]
/netbsd/src/sbin/ping/
Dping.c197 static double tmax = 0.0; variable
778 sec = MAX(2 * tmax, 10 * interval) - in doit()
1123 if (triptime > tmax) in pr_pack()
1124 tmax = triptime; in pr_pack()
1424 prec, tmax * 1000.0, in summary()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dtree-vrp.cc633 wide_int tmax = wide_int::from (wmax, prec, sgn); in set_value_range_with_overflow() local
638 if (wi::gt_p (tmin, tmax, sgn)) in set_value_range_with_overflow()
646 max = wide_int_to_tree (type, tmax); in set_value_range_with_overflow()
657 tmin = tmax + 1; in set_value_range_with_overflow()
658 if (wi::cmp (tmin, tmax, sgn) < 0) in set_value_range_with_overflow()
660 tmax = tem - 1; in set_value_range_with_overflow()
661 if (wi::cmp (tmax, tem, sgn) > 0) in set_value_range_with_overflow()
666 if (covers || wi::cmp (tmin, tmax, sgn) > 0) in set_value_range_with_overflow()
673 max = wide_int_to_tree (type, tmax); in set_value_range_with_overflow()
2461 tree tmax = wide_int_to_tree (type, range_of_op->upper_bound ()); in find_case_label_range() local
[all …]
Drange-op.cc313 wide_int tmax = wide_int::from (wmax, prec, sgn); in value_range_from_overflowed_bounds() local
317 tmin = tmax + 1; in value_range_from_overflowed_bounds()
318 if (wi::cmp (tmin, tmax, sgn) < 0) in value_range_from_overflowed_bounds()
320 tmax = tem - 1; in value_range_from_overflowed_bounds()
321 if (wi::cmp (tmax, tem, sgn) > 0) in value_range_from_overflowed_bounds()
327 if (covers || wi::cmp (tmin, tmax, sgn) > 0) in value_range_from_overflowed_bounds()
332 tree tree_max = wide_int_to_tree (type, tmax); in value_range_from_overflowed_bounds()
366 wide_int tmax = wide_int::from (wmax, prec, sgn); in value_range_with_overflow() local
369 if (wi::gt_p (tmin, tmax, sgn)) in value_range_with_overflow()
375 wide_int_to_tree (type, tmax)); in value_range_with_overflow()
Dvr-values.cc1641 tree init, step, chrec, tmin, tmax, type = TREE_TYPE (var); in bounds_of_var_in_loop() local
1693 tmax = upper_bound_in_type (type, type); in bounds_of_var_in_loop()
1695 tmax = TYPE_MAX_VALUE (type); in bounds_of_var_in_loop()
1760 tmax = maxvr.max (); in bounds_of_var_in_loop()
1767 *max = tmax; in bounds_of_var_in_loop()
3390 tree tmax = wide_int_to_tree (type, vr->upper_bound ()); in test_for_singularity() local
3393 if (compare_values (tmax, max) == -1) in test_for_singularity()
3394 max = tmax; in test_for_singularity()
Dgimple-ssa-sprintf.cc1094 tree tmax = wide_int_to_tree (type, vr.upper_bound ()); in get_int_range() local
1096 *pmax = TREE_INT_CST_LOW (tmax); in get_int_range()
4622 tree tmax = wide_int_to_tree (type, vr.upper_bound ()); in handle_printf_call() local
4624 unsigned HOST_WIDE_INT maxsize = TREE_INT_CST_LOW (tmax); in handle_printf_call()
/netbsd/src/sbin/ping6/
Dping6.c225 static double tmax = 0.0; /* maximum round trip time */ variable
967 sec = MAX(2 * tmax, 10 * interval.tv_sec) - in doit()
1358 if (triptime > tmax) in pr_pack()
1359 tmax = triptime; in pr_pack()
2023 tmin, avg, tmax, dev); in summary()
/netbsd/src/crypto/external/bsd/openssl/dist/ssl/
Dssl_sess.c64 time_t tmax = TMAX(_type_); \
65 overflow = (_type_)tmax - (_type_)(_ss_)->time; \