Searched refs:cUsedPages (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DPGMPool.cpp319 STAM_REG(pVM, &pPool->cUsedPages, STAMTYPE_U16, "/PGM/Pool/cUsedPages", STAMUNIT_PAGES, "The number of pages currently in use.");
320 STAM_REG(pVM, &pPool->cUsedPagesHigh, STAMTYPE_U16_RESET, "/PGM/Pool/cUsedPagesHigh", STAMUNIT_PAGES, "The high watermark for cUsedPages.");
632 Log(("pgmR3PoolClearAllRendezvous: cUsedPages=%d fpvFlushRemTbl=%RTbool\n", pPool->cUsedPages, !!fpvFlushRemTbl));
639 unsigned cLeft = pPool->cUsedPages;
887 unsigned cLeft = pPool->cUsedPages;
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPool.cpp3595 LogFlow(("pgmPoolTrackFlushGCPhysPTsSlow: cUsedPages=%d cPresent=%d pPhysPage=%R[pgmpage]\n",
3596 pPool->cUsedPages, pPool->cPresent, pPhysPage));
3615 unsigned cLeft = pPool->cUsedPages;
4905 pPool->cUsedPages--;
5079 pPool->cUsedPages++; /* physical handler registration / pgmPoolTrackFlushGCPhysPTsSlow requirement. */
5109 pPool->cUsedPages--;
5125 if (pPool->cUsedPages > pPool->cUsedPagesHigh)
5126 pPool->cUsedPagesHigh = pPool->cUsedPages;
5375 pPool->cUsedPages = 0;
/vbox/src/VBox/VMM/include/
H A DPGMInternal.h2340 uint16_t cUsedPages; member in struct:PGMPOOL
2342 /** The high water mark for cUsedPages. */
2480 AssertCompileMemberAlignment(PGMPOOL, cUsedPages, 8);
/vbox/src/VBox/VMM/testcase/
H A DtstVMStruct.h914 GEN_CHECK_OFF(PGMPOOL, cUsedPages);

Completed in 1339 milliseconds