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

/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA.cpp3281 unsigned offDesc = 0; local
3355 while (offDesc + pDesc->numPages * PAGE_SIZE <= offCurrent)
3357 offDesc += pDesc->numPages * PAGE_SIZE;
3358 AssertReturn(offDesc < pGMR->cbTotal, VERR_INTERNAL_ERROR); /* overflow protection */
3366 if (offCurrent + cbCurrentWidth <= offDesc + pDesc->numPages * PAGE_SIZE)
3372 cbToCopy = (offDesc + pDesc->numPages * PAGE_SIZE - offCurrent);
3376 LogFlow(("vmsvgaGMRTransfer: %s phys=%RGp\n", (enmTransferType == SVGA3D_WRITE_HOST_VRAM) ? "READ" : "WRITE", pDesc->GCPhys + offCurrent - offDesc));
3379 rc = PDMDevHlpPhysRead(pThis->CTX_SUFF(pDevIns), pDesc->GCPhys + offCurrent - offDesc, pCurrentDest, cbToCopy);
3381 rc = PDMDevHlpPhysWrite(pThis->CTX_SUFF(pDevIns), pDesc->GCPhys + offCurrent - offDesc, pCurrentDest, cbToCopy);
3391 offDesc
[all...]

Completed in 62 milliseconds