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

/vbox/src/VBox/VMM/testcase/
H A DtstPDMAsyncCompletion.cpp158 size_t offDst = 0; local
200 size_t cbWrite = (offDst + BUFFER_SIZE) <= cbSrc ? BUFFER_SIZE : cbSrc - offDst;
206 rc = PDMR3AsyncCompletionEpWrite(pEndpointDst, offDst, &DataSeg, 1, cbWrite, NULL,
209 offDst += cbWrite;
210 if (offDst == cbSrc)
218 if (!fReadPass && (offDst == cbSrc))
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxVgaMiniPortDxe/
H A DVBoxVgaMiniPortDxe.c585 int offDst = offBase + i * 32; local
586 CopyMem((UINT8 *)(UINTN)0xA0000 + offDst, pabFont + offChr, height);
/vbox/src/VBox/Debugger/
H A DDBGCEval.cpp146 size_t offDst = 0; local
156 pszCopy[offDst++] = ch;
H A DDBGPlugInDarwin.cpp241 uint32_t offDst = 0; local
261 offDst = cbToCopy + 1;
272 offDst = cbFirst + cbSecond;
273 pszBuf[offDst++] = '\0';
278 offDst = cbFirst + cbSecond + 1;
295 *pcbActual = offDst;
H A DDBGPlugInLinux.cpp339 size_t offDst = 0; local
355 if (offDst + cchText < cbBuf)
357 memcpy(&pszBuf[offDst], pHdr + 1, cchText);
358 pszBuf[offDst + cchText] = '\n';
360 else if (offDst < cbBuf)
361 memcpy(&pszBuf[offDst], pHdr + 1, cbBuf - offDst);
362 offDst += cchText + 1;
374 if (!offDst)
375 offDst
[all...]
/vbox/src/VBox/Main/src-client/
H A DVideoRec.cpp937 uint32_t offDst = (destY * pStrm->uTargetWidth + destX) * bpp; local
943 Assert(offDst + w * bpp <= pStrm->uTargetHeight * pStrm->uTargetWidth * bpp);
944 memcpy(pStrm->pu8RgbBuf + offDst, pu8BufAddr + offSrc, w * bpp);
946 offDst += pStrm->uTargetWidth * bpp;
/vbox/src/VBox/VMM/tools/
H A DVBoxCpuReport.cpp4549 unsigned offDst = 0; local
4555 if (ch == '_' && offDst > 0 && szNameC[offDst - 1] == '_')
4556 offDst--;
4557 szNameC[offDst++] = ch;
4561 while (offDst > 1 && szNameC[offDst - 1] == '_')
4562 szNameC[--offDst] = '\0';
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-ogl.cpp3681 unsigned offDst = pBoxes[i].x * pSurface->cbBlock + pBoxes[i].y * pMipLevel->cbSurfacePitch; local
3682 if (RT_LIKELY( offDst + pBoxes[i].w * pSurface->cbBlock + (pBoxes[i].h - 1) * pMipLevel->cbSurfacePitch
3690 pbData + offDst,
/vbox/include/VBox/
H A DVBoxVideo.h1407 VBOXVIDEOOFFSET offDst; member in struct:VBOXVDMACMD_DMA_PRESENT_BLT

Completed in 353 milliseconds