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

/macosx-10.10.1/dtrace-147/libdtrace/
H A Ddt_map.c46 dtrace_id_t new_max = max ? (max << 1) : 1; local
47 size_t nsize = new_max * sizeof (void *);
72 dtp->dt_maxprobe = new_max;
162 int new_max = maxformat ? (maxformat << 1) : 1; local
163 size_t nsize = new_max * sizeof (void *);
178 dtp->dt_maxformat = new_max;
296 dtrace_id_t new_max = max ? (max << 1) : 1; local
297 size_t nsize = new_max * sizeof (void *);
312 dtp->dt_maxagg = new_max;
H A Ddt_provider.c574 uint_t new_max = *maxoffs * 2; local
575 uint32_t *new_offs = dt_alloc(dtp, sizeof (uint32_t) * new_max);
583 *maxoffs = new_max;
/macosx-10.10.1/apr-32/apr/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;
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dpf_if.c510 int new_max = pfi_buffer_max * 2; local
512 if (new_max > PFI_BUFFER_MAX) {
517 p = _MALLOC(new_max * sizeof (*pfi_buffer), PFI_MTYPE,
528 pfi_buffer_max = new_max;
H A Dif_bond.c2601 int new_max; local
2629 new_max = (mtu > (int)ifnet_mtu(ifp)) ? mtu : (int)ifnet_mtu(ifp);
2632 new_max = (mtu > ifb->ifb_altmtu) ? mtu : ifb->ifb_altmtu;
2636 if (new_max != old_max) {
2639 error = bond_set_mtu_on_ports(ifb, new_max);
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Ddgpkt.c1581 unsigned32 new_max; local
1588 new_max = (rpc_g_dg_pkt_pool.max_resv_pkt + 1)
1598 if (new_max > rpc_g_dg_pkt_pool.max_pkt_count)
1600 rpc_g_dg_pkt_pool.pkt_count += new_max - rpc_g_dg_pkt_pool.max_pkt_count;
1601 rpc_g_dg_pkt_pool.max_pkt_count = new_max;
/macosx-10.10.1/bind9-45.101/bind9/contrib/queryperf/
H A Dqueryperf.c469 set_max_queries(unsigned int new_max) { argument
474 if (new_max > query_status_allocated) {
475 temp_stat = realloc(status, new_max * size_qs);
492 for (; count < new_max; count++) {
498 query_status_allocated = new_max;
502 max_queries_outstanding = new_max;
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/
H A Dpngpread.c692 png_size_t new_max; local
701 new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256;
704 (png_size_t)new_max);
712 png_ptr->save_buffer_max = new_max;
/macosx-10.10.1/libauto-186/
H A Dauto_weak.cpp231 usword_t new_max = old_max ? old_max * 2 + 1 : 15; local
233 weak_entry_t *new_entries = (weak_entry_t *)aux_calloc(new_max, sizeof(weak_entry_t));
234 azone->max_weak_refs = new_max;
/macosx-10.10.1/xnu-2782.1.97/osfmk/vm/
H A Dvm_map.c4003 vm_prot_t new_max; local
4057 new_max = current->max_protection;
4059 new_max |= VM_PROT_WRITE;
4060 if ((new_prot & (new_max | VM_PROT_COPY)) != new_prot) {
4065 if ((new_prot & new_max) != new_prot) {

Completed in 250 milliseconds