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