Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gdb/dist/gnulib/import/
H A Dintprops.h535 #define _GL_INT_OP_CALC(a, b, r, op, overflow, ut, t, tmin, tmax) \ argument
536 (overflow (a, b, tmin, tmax) \
564 #define _GL_INT_ADD_RANGE_OVERFLOW(a, b, tmin, tmax) \ argument
570 || ((EXPR_SIGNED (a) ? 0 <= (a) : (tmax) < (a)) && (tmax) < (a) + (b))) \
576 || ((EXPR_SIGNED (_GL_INT_CONVERT (a, b)) || (tmax) < (b)) \
577 && (tmax) < (a) + (b))) \
578 : (tmax) < (b) || (tmax) - (b) < (a))
579 #define _GL_INT_SUBTRACT_RANGE_OVERFLOW(a, b, tmin, tmax) \ argument
583 : (tmax) < (a) - (b)) \
587 : ((! (EXPR_SIGNED (_GL_INT_CONVERT (tmax, b)) \
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/
H A 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/lib/libc/rpc/
H A 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/
H A 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/binutils/dist/bfd/
H A 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.old/dist/bfd/
H A 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/
H A 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.old/dist/gcc/
H A Drange-op.cc202 wide_int tmax = wide_int::from (wmax, prec, sgn); in value_range_from_overflowed_bounds() local
206 tmin = tmax + 1; in value_range_from_overflowed_bounds()
207 if (wi::cmp (tmin, tmax, sgn) < 0) in value_range_from_overflowed_bounds()
209 tmax = tem - 1; in value_range_from_overflowed_bounds()
210 if (wi::cmp (tmax, tem, sgn) > 0) in value_range_from_overflowed_bounds()
216 if (covers || wi::cmp (tmin, tmax, sgn) > 0) in value_range_from_overflowed_bounds()
219 r = value_range (type, tmin, tmax, VR_ANTI_RANGE); in value_range_from_overflowed_bounds()
251 wide_int tmax = wide_int::from (wmax, prec, sgn); in value_range_with_overflow() local
254 if (wi::gt_p (tmin, tmax, sgn)) in value_range_with_overflow()
259 r = value_range (type, tmin, tmax); in value_range_with_overflow()
H A Dtree-vrp.c814 wide_int tmax = wide_int::from (wmax, prec, sgn); in set_value_range_with_overflow() local
819 if (wi::gt_p (tmin, tmax, sgn)) in set_value_range_with_overflow()
827 max = wide_int_to_tree (type, tmax); in set_value_range_with_overflow()
838 tmin = tmax + 1; in set_value_range_with_overflow()
839 if (wi::cmp (tmin, tmax, sgn) < 0) in set_value_range_with_overflow()
841 tmax = tem - 1; in set_value_range_with_overflow()
842 if (wi::cmp (tmax, tem, sgn) > 0) in set_value_range_with_overflow()
847 if (covers || wi::cmp (tmin, tmax, sgn) > 0) in set_value_range_with_overflow()
854 max = wide_int_to_tree (type, tmax); in set_value_range_with_overflow()
H A Dvr-values.c1746 tree init, step, chrec, tmin, tmax, min, max, type, tem; in adjust_range_with_scev() local
1799 tmax = upper_bound_in_type (type, type); in adjust_range_with_scev()
1801 tmax = TYPE_MAX_VALUE (type); in adjust_range_with_scev()
1858 tmax = maxvr.max (); in adjust_range_with_scev()
1867 max = tmax; in adjust_range_with_scev()
1901 if (compare_values (tmax, max) == -1) in adjust_range_with_scev()
1902 max = tmax; in adjust_range_with_scev()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A 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 …]
H A 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()
H A 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()
H A 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/
H A 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/external/bsd/elftoolchain/dist/libelf/
H A Delf_update.c377 uint64_t tmax, tmin; in _libelf_extent_is_unused() local
385 tmax = tmin + t->ex_size; in _libelf_extent_is_unused()
387 if (tmax <= start) { in _libelf_extent_is_unused()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nvptx/
H A Dnvptx.md447 "%.\\tmax.s%T0\\t%0, %1, %2;")
454 "%.\\tmax.u%T0\\t%0, %1, %2;")
844 "%.\\tmax%t0\\t%0, %1, %2;")
/netbsd-src/external/gpl3/gcc/dist/gcc/config/nvptx/
H A Dnvptx.md594 "%.\\tmax.s%T0\\t%0, %1, %2;")
601 "%.\\tmax.u%T0\\t%0, %1, %2;")
1267 "%.\\tmax%t0\\t%0, %1, %2;")
1416 "%.\\tmax.f16\\t%0, %1, %2;")