Home
last modified time | relevance | path

Searched refs:newmax (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/krb5/kadmin/kclient/
H A Dkconf.c86 int newmax; in add_to_list() local
89 newmax = list->max + 10; in add_to_list()
90 newlist = realloc(list->list, newmax * sizeof (char *)); in add_to_list()
93 list->max = newmax; in add_to_list()
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_get.c73 int newmax; in add_to_list() local
76 newmax = list->max + 10; in add_to_list()
77 newlist = realloc(list->list, newmax * sizeof(char *)); in add_to_list()
80 list->max = newmax; in add_to_list()
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_confmgr.c414 int newmax = 0; in __print2buf() local
426 newmax = (((newsz+(BUFSIZ-1))/BUFSIZ)+1) * BUFSIZ; in __print2buf()
428 line->str = (char *)calloc(newmax, 1); in __print2buf()
435 str = (char *)realloc(line->str, newmax); in __print2buf()
443 line->alloc = newmax; in __print2buf()
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/pppoe/
H A Doptions.c1670 const struct device_entry *newdep, *newmax; in parse_options() local
1769 newmax = newdep + newopt->os_ndevices; in parse_options()
1771 newdep = newmax = NULL; in parse_options()
1779 while ((newdep != NULL && newdep < newmax) || in parse_options()
1781 if (newdep < newmax) { in parse_options()
1801 if (newdep >= newmax) { in parse_options()
/illumos-gate/usr/src/cmd/nscd/
H A Dnscd_selfcred.c256 int newmax = max_pu_nscd + _NSCD_PUN_BLOCK; in get_cslot() local
258 tmp = (child_t **)calloc(newmax, sizeof (child_t *)); in get_cslot()
267 max_pu_nscd = newmax; in get_cslot()