• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/osfmk/i386/

Lines Matching refs:stats

1606 	p->stats.resident_count = 0;
1607 p->stats.resident_max = 0;
1608 p->stats.wired_count = 0;
2117 if (pmap->stats.resident_count < num_removed)
2120 assert(pmap->stats.resident_count >= num_removed);
2121 OSAddAtomic(-num_removed, (SInt32 *) &pmap->stats.resident_count);
2124 if (pmap->stats.wired_count < num_unwired)
2127 assert(pmap->stats.wired_count >= num_unwired);
2128 OSAddAtomic(-num_unwired, (SInt32 *) &pmap->stats.wired_count);
2349 if (pmap->stats.resident_count < 1)
2352 assert(pmap->stats.resident_count >= 1);
2353 OSAddAtomic(-1, (SInt32 *) &pmap->stats.resident_count);
2686 OSAddAtomic(+1, (SInt32 *) &pmap->stats.wired_count);
2690 assert(pmap->stats.wired_count >= 1);
2691 OSAddAtomic(-1, (SInt32 *) &pmap->stats.wired_count);
2738 if (pmap->stats.resident_count < 1)
2741 assert(pmap->stats.resident_count >= 1);
2742 OSAddAtomic(-1, (SInt32 *) &pmap->stats.resident_count);
2747 if (pmap->stats.wired_count < 1)
2750 assert(pmap->stats.wired_count >= 1);
2751 OSAddAtomic(-1, (SInt32 *) &pmap->stats.wired_count);
2830 assert(pmap->stats.wired_count >= 1);
2831 OSAddAtomic(-1, (SInt32 *) &pmap->stats.wired_count);
2916 OSAddAtomic(+1, (SInt32 *) &pmap->stats.resident_count);
2917 if (pmap->stats.resident_count > pmap->stats.resident_max) {
2918 pmap->stats.resident_max = pmap->stats.resident_count;
2946 OSAddAtomic(+1, (SInt32 *) &pmap->stats.wired_count);
3002 OSAddAtomic(+1, (SInt32 *) &map->stats.wired_count);
3009 assert(map->stats.wired_count >= 1);
3010 OSAddAtomic(-1, (SInt32 *) &map->stats.wired_count);