Lines Matching defs:cap
168 * If the non-global zone has a phys. memory cap, use that.
181 * If the non-global zone has a phys. memory cap, use
182 * the phys. memory cap - zone's current rss. We always
188 pgcnt_t cap, rss, free;
192 cap = btop(curproc->p_zone->zone_phys_mcap);
193 if (cap > physinstalled)
201 * Because rcapd implements a soft cap, it is possible
202 * for rss to be temporarily over the cap.
204 if (cap > rss)
205 free = cap - rss;