Searched refs:cModifications (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPool.cpp913 if (!pPage->cModifications++)
975 if (!pPage->cModifications++)
1144 Log(("Possible page reuse cMods=%d -> %d (locked=%d type=%s)\n", pPage->cModifications, pPage->cModifications * 2, pgmPoolIsPageLocked(pPage), pgmPoolPoolKindToStr(pPage->enmKind)));
1145 Assert(pPage->cModifications < 32000);
1146 pPage->cModifications = pPage->cModifications * 2;
1149 if (pPage->cModifications >= cMaxModifications)
1156 if (pPage->cModifications >= cMaxModifications)
1157 Log(("Mod overflow %RGv cMods=%d (locked=%d type=%s)\n", pvFault, pPage->cModifications, pgmPoolIsPageLocke
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DPGMPool.cpp575 pPage->cModifications += 0x1000;
589 else if ( ( pPage->cModifications < 96 /* it's cheaper here. */
595 if (!pPage->cModifications++)
758 Assert(!pPage->cModifications || ++cModifiedPages);
759 Assert(pPage->iModifiedNext == NIL_PGMPOOL_IDX || pPage->cModifications);
760 Assert(pPage->iModifiedPrev == NIL_PGMPOOL_IDX || pPage->cModifications);
763 pPage->cModifications = 0;
/vbox/src/VBox/VMM/include/
H A DPGMInline.h1469 if (pPage->cModifications)
1470 pPage->cModifications = 1; /* reset counter (can't use 0, or else it will be reinserted in the modified list) */
H A DPGMInternal.h2211 uint16_t cModifications; member in struct:PGMPOOLPAGE
/vbox/src/VBox/VMM/testcase/
H A DtstVMStruct.h862 GEN_CHECK_OFF(PGMPOOLPAGE, cModifications);

Completed in 215 milliseconds