Searched defs:pvDstPage (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DPGMPhys.cpp3365 void *pvDstPage; local
3366 rc = pgmPhysPageMap(pVM, pRamPage, GCPhys + (iPage << PAGE_SHIFT), &pvDstPage);
3374 memcpy(pvDstPage, (uint8_t const *)pvBinary + ((size_t)iPage << PAGE_SHIFT), PAGE_SIZE);
3379 ASMMemZeroPage(pvDstPage); /* (shouldn't be necessary, but can't hurt either) */
3382 memcpy(pvDstPage, (uint8_t const *)pvBinary + ((size_t)iPage << PAGE_SHIFT), cbBinaryLeft);
3591 void *pvDstPage; local
3592 rc = pgmPhysPageMakeWritableAndMap(pVM, pShadowPage, GCPhys & X86_PTE_PG_MASK, &pvDstPage);
3595 memcpy((uint8_t *)pvDstPage + (GCPhys & PAGE_OFFSET_MASK), pvBuf, cbBuf);
3675 void *pvDstPage; local
3677 rc = pgmPhysPageMakeWritableAndMap(pVM, &pRom->aPages[iPage].Shadow, GCPhys, &pvDstPage);
3697 void const *pvDstPage; local
[all...]
H A DPGMSavedState.cpp2741 void *pvDstPage; local
2742 rc = pgmPhysGCPhys2CCPtrInternal(pVM, pPage, GCPhys, &pvDstPage, &PgMpLck);
2745 ASMMemZeroPage(pvDstPage);
2787 void *pvDstPage; local
2788 rc = pgmPhysGCPhys2CCPtrInternal(pVM, pPage, GCPhys, &pvDstPage, &PgMpLck);
2790 rc = SSMR3GetMem(pSSM, pvDstPage, PAGE_SIZE);
2831 void *pvDstPage = (uint8_t *)pMmio2->RamRange.pvR3 + ((size_t)iPage << PAGE_SHIFT); local
2837 ASMMemZeroPage(pvDstPage);
2840 rc = SSMR3GetMem(pSSM, pvDstPage, PAGE_SIZE);
2939 void *pvDstPage local
[all...]

Completed in 47 milliseconds