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

/vbox/include/VBox/vmm/
H A Dgmm.h296 uint32_t cFixedPages; member in struct:GMMVMSIZES
401 GMMR0DECL(int) GMMR0InitialReservation(PVM pVM, VMCPUID idCpu, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages,
403 GMMR0DECL(int) GMMR0UpdateReservation(PVM pVM, VMCPUID idCpu, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages);
434 uint32_t cFixedPages; /**< @see GMMR0InitialReservation */ member in struct:GMMINITIALRESERVATIONREQ
454 uint32_t cFixedPages; /**< @see GMMR0UpdateReservation */ member in struct:GMMUPDATERESERVATIONREQ
773 GMMR3DECL(int) GMMR3InitialReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages,
775 GMMR3DECL(int) GMMR3UpdateReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages);
/vbox/src/VBox/VMM/VMMR3/
H A DGMM.cpp39 GMMR3DECL(int) GMMR3InitialReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages, argument
47 Req.cFixedPages = cFixedPages;
57 GMMR3DECL(int) GMMR3UpdateReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages) argument
64 Req.cFixedPages = cFixedPages;
H A DMM.cpp275 STAM_REG(pVM, &pVM->mm.s.cFixedPages, STAMTYPE_U32, "/MM/Reserved/cFixedPages", STAMUNIT_PAGES, "Reserved number of fixed pages (MMIO2).");
395 RT_MAX(pVM->mm.s.cFixedPages, 1),
586 * Called when MM::cbRamRegistered, MM::cShadowPages or MM::cFixedPages changes.
598 RT_MAX(pVM->mm.s.cFixedPages, 1));
667 const uint32_t cOld = pVM->mm.s.cFixedPages;
668 pVM->mm.s.cFixedPages += cDeltaFixedPages;
669 LogFlow(("MMR3AdjustFixedReservation: %d (%u -> %u)\n", cDeltaFixedPages, cOld, pVM->mm.s.cFixedPages));
674 cOld, pVM->mm.s.cFixedPages, pszDesc);
675 pVM->mm.s.cFixedPages
[all...]
H A DSTAM.cpp247 { RT_UOFFSETOF(GMMSTATS, VMStats.Reserved.cFixedPages), STAMTYPE_U32, STAMUNIT_PAGES, "/GMM/VM/Reserved/cFixedPages", "The amount of memory reserved for fixed allocations like MMIO2 and the hyper heap." },
250 { RT_UOFFSETOF(GMMSTATS, VMStats.Allocated.cFixedPages), STAMTYPE_U32, STAMUNIT_PAGES, "/GMM/VM/Allocated/cFixedPages", "The amount of memory allocated for fixed allocations like MMIO2 and the hyper heap." },
/vbox/src/VBox/VMM/VMMR0/
H A DGMMR0.cpp1368 + pGVM->gmm.s.Stats.Reserved.cFixedPages
1547 * @param cFixedPages The number of pages that may be allocated for fixed objects like the
1554 GMMR0DECL(int) GMMR0InitialReservation(PVM pVM, VMCPUID idCpu, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages, argument
1557 LogFlow(("GMMR0InitialReservation: pVM=%p cBasePages=%#llx cShadowPages=%#x cFixedPages=%#x enmPolicy=%d enmPriority=%d\n",
1558 pVM, cBasePages, cShadowPages, cFixedPages, enmPolicy, enmPriority));
1572 AssertReturn(cFixedPages, VERR_INVALID_PARAMETER);
1580 && !pGVM->gmm.s.Stats.Reserved.cFixedPages
1593 pGVM->gmm.s.Stats.Reserved.cFixedPages = cFixedPages;
1599 pGMM->cReservedPages += cBasePages + cFixedPages
1652 GMMR0UpdateReservation(PVM pVM, VMCPUID idCpu, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages) argument
[all...]
/vbox/src/VBox/VMM/include/
H A DMMInternal.h773 uint32_t cFixedPages; member in struct:MM
/vbox/src/VBox/VMM/testcase/
H A DtstVMStruct.h357 GEN_CHECK_OFF(MM, cFixedPages);

Completed in 66 milliseconds