Lines Matching refs:as
53 #include <vm/as.h>
62 * This is currently implemented as the number of active hardware
71 rm_asrss(as)
72 register struct as *as;
74 if (as != (struct as *)NULL && as != &kas)
75 return ((size_t)btop(hat_get_mapped_size(as->a_hat)));
83 * Defined as the ratio of a_rss for the process to total physical memory.
88 rm_pctmemory(struct as *as)
91 ulong_t num = (ulong_t)rm_asrss(as) << (PAGESHIFT-1);