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

/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_map.c71 int new_max = maxformat ? (maxformat << 1) : 1; local
72 size_t nsize = new_max * sizeof (void *);
85 *max = new_max;
119 dtrace_id_t new_max = max ? (max << 1) : 1; local
120 size_t nsize = new_max * sizeof (void *);
145 dtp->dt_maxprobe = new_max;
329 dtrace_id_t new_max = max ? (max << 1) : 1; local
330 size_t nsize = new_max * sizeof (void *);
345 dtp->dt_maxagg = new_max;
H A Ddt_provider.c580 uint_t new_max = *maxoffs * 2; local
581 uint32_t *new_offs = dt_alloc(dtp, sizeof (uint32_t) * new_max);
589 *maxoffs = new_max;
/freebsd-10.0-release/contrib/apr/tables/
H A Dapr_hash.c174 unsigned int new_max; local
176 new_max = ht->max * 2 + 1;
177 new_array = alloc_array(ht, new_max);
179 unsigned int i = hi->this->hash & new_max;
184 ht->max = new_max;
/freebsd-10.0-release/sys/netpfil/pf/
H A Dpf_if.c567 int new_max = V_pfi_buffer_max * 2; local
569 if (new_max > PFI_BUFFER_MAX) {
574 p = malloc(new_max * sizeof(*V_pfi_buffer), PFI_MTYPE,
585 V_pfi_buffer_max = new_max;
/freebsd-10.0-release/contrib/gcc/
H A Dstor-layout.c1997 tree orig_max, new_max;
2002 new_max = build_int_cst_wide (sizetype,
2008 new_max = force_fit_type (new_max, 0, 0, 0);
2009 TYPE_MAX_VALUE (sizetype) = new_max;
1990 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-10.0-release/sys/netinet/
H A Dsctp_usrreq.c5046 uint32_t new_init, new_min, new_max; local
5057 new_max = srto->srto_max;
5059 new_max = stcb->asoc.maxrto;
5064 if ((new_min <= new_init) && (new_init <= new_max)) {
5066 stcb->asoc.maxrto = new_max;
5083 new_max = srto->srto_max;
5085 new_max = inp->sctp_ep.sctp_maxrto;
5090 if ((new_min <= new_init) && (new_init <= new_max)) {
5092 inp->sctp_ep.sctp_maxrto = new_max;

Completed in 213 milliseconds