Searched refs:new_max (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_map.c72 int new_max = maxformat ? (maxformat << 1) : 1; local
73 size_t nsize = new_max * sizeof (void *);
86 *max = new_max;
120 dtrace_id_t new_max = max ? (max << 1) : 1; local
121 size_t nsize = new_max * sizeof (void *);
146 dtp->dt_maxprobe = new_max;
330 dtrace_id_t new_max = max ? (max << 1) : 1; local
331 size_t nsize = new_max * sizeof (void *);
346 dtp->dt_maxagg = new_max;
H A Ddt_provider.c590 uint_t new_max = *maxoffs * 2; local
591 uint32_t *new_offs = dt_alloc(dtp, sizeof (uint32_t) * new_max);
599 *maxoffs = new_max;
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Dsignal.c228 int new_max = evsignal + 1; local
231 p = mm_realloc(sig->sh_old, new_max * sizeof(*sig->sh_old));
238 0, (new_max - sig->sh_old_max) * sizeof(*sig->sh_old));
240 sig->sh_old_max = new_max;
/freebsd-11-stable/contrib/apr/tables/
H A Dapr_hash.c197 unsigned int new_max; local
199 new_max = ht->max * 2 + 1;
200 new_array = alloc_array(ht, new_max);
202 unsigned int i = hi->this->hash & new_max;
207 ht->max = new_max;
/freebsd-11-stable/sys/netpfil/pf/
H A Dpf_if.c595 int new_max = V_pfi_buffer_max * 2; local
597 if (new_max > PFI_BUFFER_MAX) {
602 p = malloc(new_max * sizeof(*V_pfi_buffer), PFI_MTYPE,
613 V_pfi_buffer_max = new_max;
/freebsd-11-stable/contrib/gcc/
H A Dstor-layout.c1999 tree orig_max, new_max;
2004 new_max = build_int_cst_wide (sizetype,
2010 new_max = force_fit_type (new_max, 0, 0, 0);
2011 TYPE_MAX_VALUE (sizetype) = new_max;
1992 tree orig_max, new_max; local
H A Dtree-vrp.c2084 tree new_min, new_max, orig_min, orig_max; local
2101 new_max = fold_convert (outer_type, orig_max);
2107 && is_gimple_val (new_max)
2109 && tree_int_cst_equal (new_max, orig_max)
2111 || !is_overflow_infinity (new_max))
2112 && compare_values (new_min, new_max) <= 0
2113 && compare_values (new_min, new_max) >= -1)
2115 set_value_range (vr, VR_RANGE, new_min, new_max, vr->equiv);
/freebsd-11-stable/sys/netinet/
H A Dsctp_usrreq.c5672 uint32_t new_init, new_min, new_max; local
5683 new_max = srto->srto_max;
5685 new_max = stcb->asoc.maxrto;
5690 if ((new_min <= new_init) && (new_init <= new_max)) {
5692 stcb->asoc.maxrto = new_max;
5710 new_max = srto->srto_max;
5712 new_max = inp->sctp_ep.sctp_maxrto;
5717 if ((new_min <= new_init) && (new_init <= new_max)) {
5719 inp->sctp_ep.sctp_maxrto = new_max;

Completed in 126 milliseconds