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

/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPhys.cpp299 int pgmPhysGetPageAndRangeExSlow(PVM pVM, RTGCPHYS GCPhys, PPPGMPAGE ppPage, PPGMRAMRANGE *ppRam) argument
310 *ppRam = pRam;
321 *ppRam = NULL;
/vbox/src/VBox/VMM/include/
H A DPGMInline.h179 * @param ppRam Where to store the pointer to the PGMRAMRANGE structure.
181 DECLINLINE(int) pgmPhysGetPageAndRangeEx(PVM pVM, RTGCPHYS GCPhys, PPPGMPAGE ppPage, PPGMRAMRANGE *ppRam) argument
187 return pgmPhysGetPageAndRangeExSlow(pVM, GCPhys, ppPage, ppRam);
190 *ppRam = pRam;
/vbox/src/VBox/VMM/VMMR3/
H A DPGMPhys.cpp624 * @param ppRam Pointer to the iterator variable.
628 static PPGMRAMRANGE pgmR3PhysRebuildRamRangeSearchTreesRecursively(PPGMRAMRANGE *ppRam, int iDepth) argument
636 pRam = *ppRam;
639 *ppRam = pRam->pNextR3;
649 PPGMRAMRANGE pLeft = pgmR3PhysRebuildRamRangeSearchTreesRecursively(ppRam, iDepth - 1);
651 pRam = *ppRam;
654 *ppRam = pRam->pNextR3;
658 PPGMRAMRANGE pRight = pgmR3PhysRebuildRamRangeSearchTreesRecursively(ppRam, iDepth - 1);

Completed in 206 milliseconds