Home
last modified time | relevance | path

Searched refs:newlim (Results 1 – 2 of 2) sorted by relevance

/netbsd/sys/kern/
H A Dkern_resource.c689 struct plimit *newlim; in lim_copy() local
695 newlim->pl_writeable = false; in lim_copy()
696 newlim->pl_refcnt = 1; in lim_copy()
697 newlim->pl_sv_limit = NULL; in lim_copy()
711 newlim->pl_cnlen = 0; in lim_copy()
717 newlim->pl_cnlen = len; in lim_copy()
735 return newlim; in lim_copy()
756 newlim = lim_copy(lim); in lim_privatise()
762 lim_free(newlim); in lim_privatise()
771 newlim->pl_writeable = true; in lim_privatise()
[all …]
/netbsd/external/gpl2/grep/dist/src/
H A Dgrep.c1186 long newlim; in install_matcher() local
1190 newlim = re_max_failures * 2 * 20 * sizeof (char *); in install_matcher()
1191 if (newlim > rlim.rlim_max) in install_matcher()
1193 newlim = rlim.rlim_max; in install_matcher()
1194 re_max_failures = newlim / (2 * 20 * sizeof (char *)); in install_matcher()
1196 if (rlim.rlim_cur < newlim) in install_matcher()
1198 rlim.rlim_cur = newlim; in install_matcher()