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

/freebsd-11-stable/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-11-stable/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-11-stable/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-11-stable/contrib/byacc/
H A Doutput.c816 int newmax; local
842 newmax = maxtable;
845 newmax += 200;
847 while (newmax <= loc);
849 table = TREALLOC(Value_t, table, newmax);
852 check = TREALLOC(Value_t, check, newmax);
855 for (l = maxtable; l < newmax; ++l)
860 maxtable = newmax;
/freebsd-11-stable/bin/ps/
H A Dps.c1128 int newmax; local
1130 newmax = (inf->maxcount + 1) << 1;
1131 newlist = realloc(inf->l.ptr, newmax * inf->elemsize);
1134 xo_errx(1, "realloc to %d %ss failed", newmax, inf->lname);
1136 inf->maxcount = newmax;
/freebsd-11-stable/sys/netinet6/
H A Din6_mcast.c229 size_t newmax; local
237 newmax = ((oldmax + 1) * 2) - 1;
239 if (newmax <= IPV6_MAX_MEMBERSHIPS) {
241 sizeof(struct in6_multi *) * newmax, M_IP6MOPTS, M_NOWAIT);
243 sizeof(struct in6_mfilter) * newmax, M_IN6MFILTER,
247 for (idx = oldmax; idx < newmax; idx++) {
251 imo->im6o_max_memberships = newmax;
/freebsd-11-stable/sys/netinet/
H A Din_mcast.c285 size_t newmax; local
293 newmax = ((oldmax + 1) * 2) - 1;
295 if (newmax <= IP_MAX_MEMBERSHIPS) {
297 sizeof(struct in_multi *) * newmax, M_IPMOPTS, M_NOWAIT);
299 sizeof(struct in_mfilter) * newmax, M_INMFILTER, M_NOWAIT);
302 for (idx = oldmax; idx < newmax; idx++) {
306 imo->imo_max_memberships = newmax;

Completed in 122 milliseconds