Searched refs:offDst (Results 1 - 11 of 11) 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/Debugger/
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...]
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;
/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/Runtime/common/vfs/
H A Dvfsmemory.cpp510 uint32_t const offDst = (uint32_t)(offUnsigned - pExtent->off);
511 uint32_t cbThisWrite = pExtent->cb - offDst;
514 memcpy(&pExtent->abData[offDst], pbSrc, cbThisWrite);
/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/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/include/VBox/
H A DVBoxVideo.h1407 VBOXVIDEOOFFSET offDst; member in struct:VBOXVDMACMD_DMA_PRESENT_BLT
/vbox/src/VBox/VMM/VMMR3/
H A DSSM.cpp2933 * @param offDst The destination offset.
2935 static int ssmR3StrmSkipTo(PSSMSTRM pStrm, uint64_t offDst)
2941 AssertReturn(offCur <= offDst, VERR_SSM_SKIP_BACKWARDS);
2942 if (offCur == offDst)
2946 size_t cbToRead = RT_MIN(sizeof(abBuf), offDst - offCur);
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA_VDMA.cpp2348 int rc = vboxVDMACmdExecBltPerform(pVdma, pvRam + pBlt->offDst, pvRam + pBlt->offSrc,
2361 int rc = vboxVDMACmdExecBltPerform(pVdma, pvRam + pBlt->offDst, pvRam + pBlt->offSrc,
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,

Completed in 181 milliseconds