HomeSort by: relevance | last modified time | path
    Searched refs:cpu_count_get (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/uvm/
uvm_stat.c 68 anonpg = cpu_count_get(CPU_COUNT_ANONCLEAN) +
69 cpu_count_get(CPU_COUNT_ANONDIRTY) +
70 cpu_count_get(CPU_COUNT_ANONUNKNOWN);
71 execpg = cpu_count_get(CPU_COUNT_EXECPAGES);
72 filepg = cpu_count_get(CPU_COUNT_FILECLEAN) +
73 cpu_count_get(CPU_COUNT_FILEDIRTY) +
74 cpu_count_get(CPU_COUNT_FILEUNKNOWN) -
94 cpu_count_get(CPU_COUNT_NFAULT),
95 cpu_count_get(CPU_COUNT_NTRAP),
96 cpu_count_get(CPU_COUNT_NINTR)
    [all...]
uvm_meter.c 125 u.cpuhit = cpu_count_get(CPU_COUNT_CPUHIT);
126 u.cpumiss = cpu_count_get(CPU_COUNT_CPUMISS);
127 u.faults = cpu_count_get(CPU_COUNT_NFAULT);
128 u.traps = cpu_count_get(CPU_COUNT_NTRAP);
129 u.intrs = cpu_count_get(CPU_COUNT_NINTR);
130 u.swtch = cpu_count_get(CPU_COUNT_NSWTCH);
131 u.softs = cpu_count_get(CPU_COUNT_NSOFT);
132 u.syscalls = cpu_count_get(CPU_COUNT_NSYSCALL);
133 u.pageins = cpu_count_get(CPU_COUNT_PAGEINS);
136 u.forks = cpu_count_get(CPU_COUNT_FORKS)
    [all...]
uvm_pdpolicy_clock.c 200 anonpg = cpu_count_get(CPU_COUNT_ANONCLEAN) +
201 cpu_count_get(CPU_COUNT_ANONDIRTY) +
202 cpu_count_get(CPU_COUNT_ANONUNKNOWN);
203 execpg = cpu_count_get(CPU_COUNT_EXECPAGES);
204 filepg = cpu_count_get(CPU_COUNT_FILECLEAN) +
205 cpu_count_get(CPU_COUNT_FILEDIRTY) +
206 cpu_count_get(CPU_COUNT_FILEUNKNOWN) -
uvm_pdaemon.c 981 filepages = (int)(cpu_count_get(CPU_COUNT_FILECLEAN) +
982 cpu_count_get(CPU_COUNT_FILEUNKNOWN) +
983 cpu_count_get(CPU_COUNT_FILEDIRTY) - uvmexp.wired);
uvm_page.c 984 if ((fp = cpu_count_get(CPU_COUNT_FREEPAGES)) < 0) {
  /src/sys/compat/linux32/common/
linux32_sysinfo.c 84 filepg = cpu_count_get(CPU_COUNT_FILECLEAN) +
85 cpu_count_get(CPU_COUNT_FILEDIRTY) +
86 cpu_count_get(CPU_COUNT_FILEUNKNOWN) -
87 cpu_count_get(CPU_COUNT_EXECPAGES);
  /src/sys/miscfs/procfs/
procfs_linux.c 171 filepg = (long)(cpu_count_get(CPU_COUNT_FILECLEAN) +
172 cpu_count_get(CPU_COUNT_FILEDIRTY) +
173 cpu_count_get(CPU_COUNT_FILEUNKNOWN) -
174 cpu_count_get(CPU_COUNT_EXECPAGES));
175 anonpg = (long)(cpu_count_get(CPU_COUNT_ANONCLEAN) +
176 cpu_count_get(CPU_COUNT_ANONDIRTY) +
177 cpu_count_get(CPU_COUNT_ANONUNKNOWN));
178 execpg = (long)cpu_count_get(CPU_COUNT_EXECPAGES);
342 cpu_count_get(CPU_COUNT_NINTR),
343 cpu_count_get(CPU_COUNT_NSWTCH)
    [all...]
  /src/sys/sys/
cpu_data.h 257 cpu_count_get(enum cpu_count idx) function in typeref:typename:int64_t
  /src/sys/compat/linux/common/
linux_misc.c 1453 filepg = cpu_count_get(CPU_COUNT_FILECLEAN) +
1454 cpu_count_get(CPU_COUNT_FILEDIRTY) +
1455 cpu_count_get(CPU_COUNT_FILEUNKNOWN) -
1456 cpu_count_get(CPU_COUNT_EXECPAGES);

Completed in 18 milliseconds