Lines Matching refs:stat32

443 		vm_statistics_t stat32;  in host_statistics()  local
453 stat32 = (vm_statistics_t)info; in host_statistics()
455 stat32->free_count = VM_STATISTICS_TRUNCATE_TO_32_BIT(vm_page_free_count + speculative_count); in host_statistics()
456 stat32->active_count = VM_STATISTICS_TRUNCATE_TO_32_BIT(vm_page_active_count); in host_statistics()
460 stat32->active_count += VM_STATISTICS_TRUNCATE_TO_32_BIT(lq->vpl_count); in host_statistics()
463 stat32->inactive_count = VM_STATISTICS_TRUNCATE_TO_32_BIT(vm_page_inactive_count); in host_statistics()
465 stat32->wire_count = VM_STATISTICS_TRUNCATE_TO_32_BIT(vm_page_wire_count); in host_statistics()
467stat32->wire_count = VM_STATISTICS_TRUNCATE_TO_32_BIT(vm_page_wire_count + vm_page_throttled_count… in host_statistics()
469 stat32->zero_fill_count = VM_STATISTICS_TRUNCATE_TO_32_BIT(host_vm_stat.zero_fill_count); in host_statistics()
470 stat32->reactivations = VM_STATISTICS_TRUNCATE_TO_32_BIT(host_vm_stat.reactivations); in host_statistics()
471 stat32->pageins = VM_STATISTICS_TRUNCATE_TO_32_BIT(host_vm_stat.pageins); in host_statistics()
472 stat32->pageouts = VM_STATISTICS_TRUNCATE_TO_32_BIT(host_vm_stat.pageouts); in host_statistics()
473 stat32->faults = VM_STATISTICS_TRUNCATE_TO_32_BIT(host_vm_stat.faults); in host_statistics()
474 stat32->cow_faults = VM_STATISTICS_TRUNCATE_TO_32_BIT(host_vm_stat.cow_faults); in host_statistics()
475 stat32->lookups = VM_STATISTICS_TRUNCATE_TO_32_BIT(host_vm_stat.lookups); in host_statistics()
476 stat32->hits = VM_STATISTICS_TRUNCATE_TO_32_BIT(host_vm_stat.hits); in host_statistics()
487 stat32->purgeable_count = VM_STATISTICS_TRUNCATE_TO_32_BIT(vm_page_purgeable_count); in host_statistics()
488 stat32->purges = VM_STATISTICS_TRUNCATE_TO_32_BIT(vm_page_purged_count); in host_statistics()
494 stat32->speculative_count = VM_STATISTICS_TRUNCATE_TO_32_BIT(speculative_count); in host_statistics()