Searched refs:newmax (Results 1 – 7 of 7) sorted by relevance
/freebsd/sys/fs/nfsclient/ |
H A D | nfs_clnfsiod.c | 133 int iod, newmax; in sysctl_iodmax() local 135 newmax = ncl_iodmax; in sysctl_iodmax() 136 error = sysctl_handle_int(oidp, &newmax, 0, req); in sysctl_iodmax() 139 if (newmax > NFS_MAXASYNCDAEMON) in sysctl_iodmax() 142 ncl_iodmax = newmax; in sysctl_iodmax()
|
/freebsd/crypto/krb5/src/util/profile/ |
H A D | prof_get.c | 79 unsigned int newmax; in add_to_list() local 82 newmax = list->max + 10; in add_to_list() 83 newlist = realloc(list->list, newmax * sizeof(char *)); in add_to_list() 86 list->max = newmax; in add_to_list()
|
/freebsd/sys/kern/ |
H A D | kern_jailmeta.c | 39 uint32_t newmax = 0; in jm_sysctl_meta_maxbufsize() local 61 error = SYSCTL_IN(req, &newmax, sizeof(newmax)); in jm_sysctl_meta_maxbufsize() 65 jm_maxbufsize_hard = newmax; in jm_sysctl_meta_maxbufsize()
|
/freebsd/contrib/byacc/ |
H A D | output.c | 841 int newmax; in pack_vector() local 867 newmax = maxtable; in pack_vector() 870 newmax += 200; in pack_vector() 872 while (newmax <= loc); in pack_vector() 874 table = TREALLOC(Value_t, table, newmax); in pack_vector() 877 check = TREALLOC(Value_t, check, newmax); in pack_vector() 880 for (l = maxtable; l < newmax; ++l) in pack_vector() 885 maxtable = newmax; in pack_vector()
|
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/ |
H A D | tdata.c | 353 tdata_label_newmax(tdata_t *td, int newmax) in tdata_label_newmax() argument 355 (void) list_iter(td->td_labels, tdata_label_newmax_cb, &newmax); in tdata_label_newmax()
|
/freebsd/bin/ps/ |
H A D | ps.c | 1209 int newmax; in expand_list() local 1211 newmax = (inf->maxcount + 1) << 1; in expand_list() 1212 newlist = realloc(inf->l.ptr, newmax * inf->elemsize); in expand_list() 1215 xo_errx(1, "realloc to %d %ss failed", newmax, inf->lname); in expand_list() 1217 inf->maxcount = newmax; in expand_list()
|
/freebsd/tests/sys/kern/ |
H A D | jailmeta.sh | 351 newmax=$((origmax + 1)) 352 sysctl security.jail.meta_maxbufsize=$newmax
|