Searched defs:cPTs (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DPGMMap.cpp110 const unsigned cPTs = cb >> X86_PD_SHIFT; local
113 for (unsigned i = 0; i < cPTs; i++)
129 rc = MMHyperAlloc( pVM, RT_OFFSETOF(PGMMAPPING, aPTs[cPTs]), 0, MM_TAG_PGM_MAPPINGS, (void **)&pNew);
131 rc = MMR3HyperAllocOnceNoRel(pVM, RT_OFFSETOF(PGMMAPPING, aPTs[cPTs]), 0, MM_TAG_PGM_MAPPINGS, (void **)&pNew);
140 pNew->cPTs = cPTs;
148 rc = MMHyperAlloc( pVM, PAGE_SIZE * 3 * cPTs, PAGE_SIZE, MM_TAG_PGM_MAPPINGS, (void **)&pbPTs);
150 rc = MMR3HyperAllocOnceNoRel(pVM, PAGE_SIZE * 3 * cPTs, PAGE_SIZE, MM_TAG_PGM_MAPPINGS, (void **)&pbPTs);
160 Log4(("PGMR3MapPT: GCPtr=%RGv cPTs=%u pbPTs=%p\n", GCPtr, cPTs, pbPT
303 pgmR3AreIntermediatePDEsUnused(PVM pVM, unsigned iPD, unsigned cPTs) argument
433 const unsigned cPTs = pCur->cPTs; local
[all...]
/vbox/src/VBox/VMM/VMMRZ/
H A DPGMRZDynMap.cpp185 uint16_t cPTs; member in struct:PGMR0DYNMAPSEG
821 AssertReturn(pSeg->cPTs < cMaxPTs, VERR_PGM_DYNMAP_IPE);
840 pSeg->ahMemObjPTs[pSeg->cPTs++] = pPgLvl->a[i].hMemObj;
957 pSeg->cPTs = 0;
1053 while (pSeg->cPTs-- > 0)
1055 rc2 = RTR0MemObjFree(pSeg->ahMemObjPTs[pSeg->cPTs], true /* fFreeMappings */);
1057 pSeg->ahMemObjPTs[pSeg->cPTs] = NIL_RTR0MEMOBJ;
1220 uint32_t iPT = pSeg->cPTs;
1231 pSeg->cPTs = 0;
/vbox/src/VBox/VMM/include/
H A DPGMInternal.h544 uint32_t cPTs; member in struct:PGMMAPPING

Completed in 70 milliseconds