Searched refs:newlim (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/sys/ufs/ufs/
H A Dufs_quota.c851 struct dqblk64 newlim; local
858 newlim = *dqb;
874 newlim.dqb_curblocks = dq->dq_curblocks;
875 newlim.dqb_curinodes = dq->dq_curinodes;
877 newlim.dqb_btime = dq->dq_btime;
878 newlim.dqb_itime = dq->dq_itime;
880 if (newlim.dqb_bsoftlimit &&
881 dq->dq_curblocks >= newlim.dqb_bsoftlimit &&
883 newlim.dqb_btime = time_second + ump->um_btime[type];
884 if (newlim
[all...]
/freebsd-12-stable/gnu/usr.bin/grep/
H A Dgrep.c1235 long newlim; local
1239 newlim = re_max_failures * 2 * 20 * sizeof (char *);
1240 if (newlim > rlim.rlim_max)
1242 newlim = rlim.rlim_max;
1243 re_max_failures = newlim / (2 * 20 * sizeof (char *));
1245 if (rlim.rlim_cur < newlim)
1247 rlim.rlim_cur = newlim;
/freebsd-12-stable/sys/kern/
H A Dkern_resource.c646 struct plimit *newlim, *oldlim; local
663 newlim = lim_alloc();
671 lim_free(newlim);
676 lim_copy(newlim, oldlim);
677 alimp = &newlim->pl_rlimit[which];
727 p->p_limit = newlim;

Completed in 90 milliseconds