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

/illumos-gate/usr/src/cmd/krb5/kadmin/kclient/
H A Dkconf.c86 int newmax; local
89 newmax = list->max + 10;
90 newlist = realloc(list->list, newmax * sizeof (char *));
93 list->max = newmax;
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_get.c73 int newmax; local
76 newmax = list->max + 10;
77 newlist = realloc(list->list, newmax * sizeof(char *));
80 list->max = newmax;
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_confmgr.c414 int newmax = 0; local
426 newmax = (((newsz+(BUFSIZ-1))/BUFSIZ)+1) * BUFSIZ;
428 line->str = (char *)calloc(newmax, 1);
435 str = (char *)realloc(line->str, newmax);
443 line->alloc = newmax;
/illumos-gate/usr/src/tools/ctf/cvt/
H A Dtdata.c346 tdata_label_newmax(tdata_t *td, int newmax) argument
348 (void) list_iter(td->td_labels, tdata_label_newmax_cb, &newmax);
/illumos-gate/usr/src/cmd/nscd/
H A Dnscd_selfcred.c255 int newmax = max_pu_nscd + _NSCD_PUN_BLOCK; local
257 tmp = (child_t **)calloc(newmax, sizeof (child_t *));
266 max_pu_nscd = newmax;
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/pppoe/
H A Doptions.c1669 const struct device_entry *newdep, *newmax; local
1768 newmax = newdep + newopt->os_ndevices;
1770 newdep = newmax = NULL;
1778 while ((newdep != NULL && newdep < newmax) ||
1780 if (newdep < newmax) {
1800 if (newdep >= newmax) {

Completed in 72 milliseconds