Lines Matching full:total
163 struct vmtotal total;
176 return (SYSCTL_OUT(req, NULL, sizeof(total)));
178 bzero(&total, sizeof(total));
195 total.t_dw++;
197 total.t_sl++;
201 total.t_sw++;
205 total.t_rq++;
248 total.t_vm += object->size;
249 total.t_rm += object->resident_page_count;
251 total.t_avm += object->size;
252 total.t_arm += object->resident_page_count;
256 total.t_vmshr += object->size;
257 total.t_rmshr += object->resident_page_count;
259 total.t_avmshr += object->size;
260 total.t_armshr += object->resident_page_count;
265 total.t_pw = vm_wait_count();
266 total.t_free = vm_free_count();
272 total11.t_rq = total.t_rq;
273 total11.t_dw = total.t_dw;
274 total11.t_pw = total.t_pw;
275 total11.t_sl = total.t_sl;
276 total11.t_sw = total.t_sw;
277 total11.t_vm = total.t_vm; /* truncate */
278 total11.t_avm = total.t_avm; /* truncate */
279 total11.t_rm = total.t_rm; /* truncate */
280 total11.t_arm = total.t_arm; /* truncate */
281 total11.t_vmshr = total.t_vmshr; /* truncate */
282 total11.t_avmshr = total.t_avmshr; /* truncate */
283 total11.t_rmshr = total.t_rmshr; /* truncate */
284 total11.t_armshr = total.t_armshr; /* truncate */
285 total11.t_free = total.t_free; /* truncate */
289 return (SYSCTL_OUT(req, &total, sizeof(total)));
353 VM_STATS_VM(v_tfree, "Total pages freed");
384 VM_STATS_UINT(v_page_count, "Total number of pages in system");