Searched defs:newmax (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_get.c74 unsigned int newmax; local
77 newmax = list->max + 10;
78 newlist = realloc(list->list, newmax * sizeof(char *));
81 list->max = newmax;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dav.c84 I32 newmax; local
98 newmax = key + AvMAX(av);
110 newmax = malloced_size((void*)AvALLOC(av))/sizeof(SV*) - 1;
112 if (key <= newmax)
115 newmax = key + AvMAX(av) / 5;
117 MEM_WRAP_CHECK_1(newmax+1, SV*, "panic: array extend");
119 Renew(AvALLOC(av),newmax+1, SV*); local
121 bytes = (newmax + 1) * sizeof(SV*);
128 assert(itmp > newmax);
129 newmax
[all...]
H A Dscope.c144 I32 newmax = GROW(oldmax); local
146 Renew(PL_markstack, newmax, I32);
148 PL_markstack_max = PL_markstack + newmax;
H A Dhv.c1203 Perl_hv_ksplit(pTHX_ HV *hv, IV newmax) argument
1215 newsize = (I32) newmax; /* possible truncation here */
1216 if (newsize != newmax || newmax <= oldsize)
1221 if (newsize < newmax)
1223 if (newsize < newmax)
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_confmgr.c417 int newmax = 0; local
429 newmax = (((newsz+(BUFSIZ-1))/BUFSIZ)+1) * BUFSIZ;
431 line->str = (char *)calloc(newmax, 1);
438 str = (char *)realloc(line->str, newmax);
446 line->alloc = newmax;
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_node.c430 topo_instance_t newmax; local
449 newmax = nhp->th_range.tr_max + incr;
450 arrlen = newmax - nhp->th_range.tr_min + 1;
473 nhp->th_range.tr_max = newmax;

Completed in 43 milliseconds