Searched refs:resident_count (Results 1 - 7 of 7) sorted by relevance

/xnu-2422.115.4/osfmk/i386/
H A Dpmap_x86_common.c679 assert(pmap->stats.resident_count >= 1);
680 OSAddAtomic(-1, &pmap->stats.resident_count);
818 OSAddAtomic(+1, &pmap->stats.resident_count);
819 if (pmap->stats.resident_count > pmap->stats.resident_max) {
820 pmap->stats.resident_max = pmap->stats.resident_count;
840 OSAddAtomic(+1, &pmap->stats.resident_count);
1088 if (pmap->stats.resident_count < num_removed)
1089 panic("pmap_remove_range: resident_count");
1093 assert(pmap->stats.resident_count >= num_removed);
1094 OSAddAtomic(-num_removed, &pmap->stats.resident_count);
[all...]
H A Dmachine_routines.c145 kernel_pmap->stats.resident_count++;
146 if (kernel_pmap->stats.resident_count >
149 kernel_pmap->stats.resident_count;
H A Dpmap.h697 #define pmap_resident_count(pmap) ((pmap)->stats.resident_count)
/xnu-2422.115.4/osfmk/mach/
H A Dvm_statistics.h236 integer_t resident_count; /* # of pages mapped (total)*/ member in struct:pmap_statistics
/xnu-2422.115.4/tools/lldbmacros/
H A Dmemory.py868 vmstats.resident_count = 0
881 entry_format = "{p.p_pid: >10d} {p.p_comm: <20s} {m.hdr.nentries: >6d} {s.wired_count: >10d} {vsize: >10d} {s.resident_count: >10d} {s.new_resident_count: >10d} {s.resident_max: >10d} {s.internal: >10d} {s.external: >10d} {s.reusable: >10d} {s.compressed: >10d} {s.compressed_peak: >10d} {s.compressed_lifetime: >10d} {s.error}"
888 vmstats.resident_count = unsigned(vmmap.pmap.stats.resident_count);
910 if vmstats.new_resident_count +vmstats.reusable != vmstats.resident_count:
976 if vmmap.pmap != 0: resident_pages = int(vmmap.pmap.stats.resident_count)
/xnu-2422.115.4/osfmk/x86_64/
H A Dpmap.c1163 if (pmap->stats.resident_count == 0)
1226 p->stats.resident_count = 0;
/xnu-2422.115.4/osfmk/vm/
H A Dvm_map.c14152 mach_vm_size_t resident_count; local
14188 resident_count = object->resident_page_count;
14189 if ((entry->offset / PAGE_SIZE) >= resident_count) {
14190 resident_count = 0;
14192 resident_count -= (entry->offset / PAGE_SIZE);
14196 volatile_resident_count += resident_count;

Completed in 65 milliseconds