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

/freebsd-10.1-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.1-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.1-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-10.1-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.1-release/contrib/byacc/
H A Doutput.c738 int newmax; local
764 newmax = maxtable;
767 newmax += 200;
769 while (newmax <= loc);
771 table = TREALLOC(Value_t, table, newmax);
774 check = TREALLOC(Value_t, check, newmax);
777 for (l = maxtable; l < newmax; ++l)
782 maxtable = newmax;
/freebsd-10.1-release/bin/ps/
H A Dps.c1097 int newmax; local
1099 newmax = (inf->maxcount + 1) << 1;
1100 newlist = realloc(inf->l.ptr, newmax * inf->elemsize);
1103 errx(1, "realloc to %d %ss failed", newmax, inf->lname);
1105 inf->maxcount = newmax;
/freebsd-10.1-release/sys/netinet/
H A Din_mcast.c241 size_t newmax; local
249 newmax = ((oldmax + 1) * 2) - 1;
251 if (newmax <= IP_MAX_MEMBERSHIPS) {
253 sizeof(struct in_multi *) * newmax, M_IPMOPTS, M_NOWAIT);
255 sizeof(struct in_mfilter) * newmax, M_INMFILTER, M_NOWAIT);
258 for (idx = oldmax; idx < newmax; idx++) {
262 imo->imo_max_memberships = newmax;
/freebsd-10.1-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 198 milliseconds