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

/freebsd-10.0-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-10.0-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-10.0-release/contrib/byacc/
H A Doutput.c527 int newmax; local
553 newmax = maxtable;
556 newmax += 200;
558 while (newmax <= loc);
560 table = TREALLOC(Value_t, table, newmax);
563 check = TREALLOC(Value_t, check, newmax);
566 for (l = maxtable; l < newmax; ++l)
571 maxtable = newmax;
/freebsd-10.0-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-10.0-release/bin/ps/
H A Dps.c1057 int newmax; local
1059 newmax = (inf->maxcount + 1) << 1;
1060 newlist = realloc(inf->l.ptr, newmax * inf->elemsize);
1063 errx(1, "realloc to %d %ss failed", newmax, inf->lname);
1065 inf->maxcount = newmax;
/freebsd-10.0-release/sys/netinet/
H A Din_mcast.c237 size_t newmax; local
245 newmax = ((oldmax + 1) * 2) - 1;
247 if (newmax <= IP_MAX_MEMBERSHIPS) {
249 sizeof(struct in_multi *) * newmax, M_IPMOPTS, M_NOWAIT);
251 sizeof(struct in_mfilter) * newmax, M_INMFILTER, M_NOWAIT);
254 for (idx = oldmax; idx < newmax; idx++) {
258 imo->imo_max_memberships = newmax;
/freebsd-10.0-release/sys/netinet6/
H A Din6_mcast.c226 size_t newmax; local
234 newmax = ((oldmax + 1) * 2) - 1;
236 if (newmax <= IPV6_MAX_MEMBERSHIPS) {
238 sizeof(struct in6_multi *) * newmax, M_IP6MOPTS, M_NOWAIT);
240 sizeof(struct in6_mfilter) * newmax, M_IN6MFILTER,
244 for (idx = oldmax; idx < newmax; idx++) {
248 imo->im6o_max_memberships = newmax;
/freebsd-10.0-release/contrib/ntp/ntpd/
H A Dntp_io.c3788 int i, newmax = 0; local
3791 newmax = i;
3792 maxactivefd = newmax;

Completed in 123 milliseconds