Searched refs:cMaxPages (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DPGMPool.cpp150 uint16_t cMaxPages = 1024; local
161 cMaxPages = PGMPOOL_IDX_LAST;
163 cMaxPages = (uint16_t)u64MaxPages;
169 rc = CFGMR3QueryU16Def(pCfg, "MaxPages", &cMaxPages, cMaxPages);
171 AssertLogRelMsgReturn(cMaxPages <= PGMPOOL_IDX_LAST && cMaxPages >= RT_ALIGN(PGMPOOL_IDX_FIRST, 16),
172 ("cMaxPages=%u (%#x)\n", cMaxPages, cMaxPages), VERR_INVALID_PARAMETE
[all...]
H A DGMM.cpp341 *pcMaxPages = Req.cMaxPages;
H A DPGMPhys.cpp4486 uint64_t cAllocPages, cMaxPages, cBalloonPages; local
4504 if (GMMR3QueryMemoryStats(pVM, &cAllocPages, &cMaxPages, &cBalloonPages) == VINF_SUCCESS)
4509 " Ballooned pages: %RX64\n", cAllocPages, cMaxPages, cBalloonPages));
H A DSTAM.cpp234 { RT_UOFFSETOF(GMMSTATS, cMaxPages), STAMTYPE_U64, STAMUNIT_PAGES, "/GMM/cMaxPages", "The maximum number of pages GMM is allowed to allocate." },
/vbox/include/VBox/vmm/
H A Dgmm.h358 * (GMM::cMaxPages). */
359 uint64_t cMaxPages; member in struct:GMMSTATS
539 uint64_t cMaxPages; member in struct:GMMMEMSTATSREQ
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA.cpp100 uint32_t cMaxPages; member in struct:__anon13151
173 SSMFIELD_ENTRY( GMR, cMaxPages),
2560 pGMR->cMaxPages = pCmd->numPages;
2598 AssertBreak(pCmd->offsetPages + pCmd->numPages <= pGMR->cMaxPages);
2605 paNewPage64 = (uint64_t *)RTMemAllocZ(pGMR->cMaxPages * sizeof(uint64_t));
2623 pGMR->paDesc = (PVMSVGAGMRDESCRIPTOR)RTMemAllocZ(pGMR->cMaxPages * sizeof(VMSVGAGMRDESCRIPTOR));
3255 pGMR->cMaxPages = 0;
3598 Assert(pGMR->cMaxPages || pGMR->cbTotal);
3599 pGMR->paDesc = (PVMSVGAGMRDESCRIPTOR)RTMemAllocZ((pGMR->cMaxPages) ? pGMR->cMaxPages
[all...]
/vbox/src/VBox/VMM/VMMR0/
H A DGMMR0.cpp526 uint64_t cMaxPages; member in struct:GMM
528 * The deal is that cReservedPages - cOverCommittedPages <= cMaxPages. */
828 * Query system page count and guess a reasonable cMaxPages value.
830 pGMM->cMaxPages = UINT32_MAX; /** @todo IPRT function for query ram size and such. */
2509 if (RT_UNLIKELY(pGMM->cAllocatedPages + cPages > pGMM->cMaxPages))
3814 pReq->cMaxPages = pGMM->cMaxPages;
3858 pReq->cMaxPages = pGVM->gmm.s.Stats.Reserved.cBasePages;
3859 pReq->cFreePages = pReq->cMaxPages - pReq->cAllocPages;
5357 pStats->cMaxPages
[all...]
/vbox/src/VBox/VMM/testcase/
H A DtstVMStruct.h881 GEN_CHECK_OFF(PGMPOOL, cMaxPages);
/vbox/src/VBox/VMM/include/
H A DPGMInternal.h2273 uint16_t cMaxPages; member in struct:PGMPOOL
2473 /** Array of pages. (cMaxPages in length)
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPool.cpp4972 if ( pPool->cCurPages < pPool->cMaxPages

Completed in 122 milliseconds