Searched refs:newmax (Results 1 - 9 of 9) sorted by relevance

/freebsd-9.3-release/sys/fs/nfsclient/
H A Dnfs_clnfsiod.c134 int iod, newmax; local
136 newmax = ncl_iodmax;
137 error = sysctl_handle_int(oidp, &newmax, 0, req);
140 if (newmax > NFS_MAXASYNCDAEMON)
143 ncl_iodmax = newmax;
/freebsd-9.3-release/sys/nfsclient/
H A Dnfs_nfsiod.c133 int iod, newmax; local
135 newmax = nfs_iodmax;
136 error = sysctl_handle_int(oidp, &newmax, 0, req);
139 if (newmax > NFS_MAXASYNCDAEMON)
142 nfs_iodmax = newmax;
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dsymtab.c193 unsigned int i, newsize, newmax; local
198 newmax = newsize * 3 / 4;
199 INSIST(newsize > 0U && newmax > 0U);
227 symtab->maxload = newmax;
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dsymtab.c191 unsigned int i, newsize, newmax; local
196 newmax = newsize * 3 / 4;
197 INSIST(newsize > 0U && newmax > 0U);
225 symtab->maxload = newmax;
/freebsd-9.3-release/usr.bin/yacc/
H A Doutput.c1325 int newmax; local
1328 newmax = maxtable;
1330 do { newmax += 200; } while (newmax <= loc);
1331 table = realloc(table, newmax*sizeof(short));
1333 check = realloc(check, newmax*sizeof(short));
1335 for (l = maxtable; l < newmax; ++l)
1341 return(newmax);
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dtdata.c353 tdata_label_newmax(tdata_t *td, int newmax) argument
355 (void) list_iter(td->td_labels, tdata_label_newmax_cb, &newmax);
/freebsd-9.3-release/bin/ps/
H A Dps.c1095 int newmax; local
1097 newmax = (inf->maxcount + 1) << 1;
1098 newlist = realloc(inf->l.ptr, newmax * inf->elemsize);
1101 errx(1, "realloc to %d %ss failed", newmax, inf->lname);
1103 inf->maxcount = newmax;
/freebsd-9.3-release/sys/netinet/
H A Din_mcast.c234 size_t newmax; local
242 newmax = ((oldmax + 1) * 2) - 1;
244 if (newmax <= IP_MAX_MEMBERSHIPS) {
246 sizeof(struct in_multi *) * newmax, M_IPMOPTS, M_NOWAIT);
248 sizeof(struct in_mfilter) * newmax, M_INMFILTER, M_NOWAIT);
251 for (idx = oldmax; idx < newmax; idx++) {
255 imo->imo_max_memberships = newmax;
/freebsd-9.3-release/sys/netinet6/
H A Din6_mcast.c230 size_t newmax; local
238 newmax = ((oldmax + 1) * 2) - 1;
240 if (newmax <= IPV6_MAX_MEMBERSHIPS) {
242 sizeof(struct in6_multi *) * newmax, M_IP6MOPTS, M_NOWAIT);
244 sizeof(struct in6_mfilter) * newmax, M_IN6MFILTER,
248 for (idx = oldmax; idx < newmax; idx++) {
252 imo->im6o_max_memberships = newmax;

Completed in 269 milliseconds