Searched refs:pbDst (Results 1 - 25 of 28) sorted by relevance

12

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-encode.cpp243 uint8_t *pbDst = &abHdr[0]; local
250 *pbDst++ = (uint8_t)uTag | (pAsn1Core->fClass & ~ASN1_TAG_MASK);
257 *pbDst++ = ASN1_TAG_USE_LONG_FORM | (pAsn1Core->fClass & ~ASN1_TAG_MASK);
259 *pbDst++ = uTag;
262 *pbDst++ = (uTag >> 7) | 0x80;
263 *pbDst++ = uTag & 0x7f;
267 *pbDst++ = (uTag >> 14) | 0x80;
268 *pbDst++ = ((uTag >> 7) & 0x7f) | 0x80;
269 *pbDst++ = uTag & 0x7f;
273 *pbDst
[all...]
/vbox/src/VBox/HostDrivers/Support/
H A DSUPR3HardenedNoCrt.cpp55 uint8_t const *pbDst = (uint8_t const *)puDst; local
59 if (*pbDst != *pbSrc)
61 if (*pbDst < *pbSrc)
66 pbDst++;
86 uint8_t *pbDst = (uint8_t *)puDst; local
90 *pbDst++ = *pbSrc++;
101 uint8_t *pbDst = (uint8_t *)pvDst; local
104 *pbDst++ = (uint8_t)ch;
/vbox/src/VBox/ValidationKit/utils/cpu/
H A Dcidet-app.cpp897 uint8_t *pbDst = pAppBuf->pbNormal + pBuf->offActive - pBuf->cbPrologue; local
902 Assert(pbDst == &pAppBuf->pbNormal[pBuf->offActive]);
903 memcpy(pbDst, pvInstr, pBuf->cbActive);
904 pbDst += pBuf->cbActive;
918 uint8_t * const pbStartEpilogue = pbDst;
921 *pbDst++ = 0xeb;
922 *pbDst++ = 0x06; /* This is a push es, so if the decoder is one off, we'll hit the int 3 below. */
925 *pbDst++ = 0xcc;
926 *pbDst++ = 0xcc;
927 *pbDst
[all...]
/vbox/src/VBox/Devices/Storage/VSCSI/
H A DVSCSIInline.h86 DECLINLINE(void) vscsiPadStr(int8_t *pbDst, const char *pbSrc, uint32_t cbSize) argument
91 pbDst[i] = *pbSrc++;
93 pbDst[i] = ' ';
/vbox/src/VBox/NetworkServices/NetLib/
H A DVBoxNetIntIf.cpp61 uint8_t *pbDst = (uint8_t *)pvFrame; local
64 memcpy(pbDst, paSegs[iSeg].pv, paSegs[iSeg].cb);
65 pbDst += paSegs[iSeg].cb;
/vbox/src/VBox/Runtime/common/crypto/
H A Dpkix-signature-rsa.cpp275 uint8_t *pbDst = &pThis->Scratch.abSignature[0];
276 pbDst[0] = 0x00;
277 pbDst[1] = 0x01; /* BT - block type, see RFC-2313. */
279 memset(&pbDst[2], 0xff, cbFFs);
280 pbDst += cbFFs + 2;
281 *pbDst++ = 0x00;
282 memcpy(pbDst, pbDigestInfoStart, cbDigestInfoStart);
283 pbDst += cbDigestInfoStart;
284 int rc = RTCrDigestFinal(hDigest, pbDst, cbHash);
287 pbDst
[all...]
/vbox/include/VBox/
H A Dintnetinline.h180 uint8_t *pbDst = (uint8_t *)pvBuf + pSG->aSegs[0].cb; local
186 Assert((uintptr_t)pbDst - (uintptr_t)pvBuf + cbSeg <= pSG->cbTotal);
187 memcpy(pbDst, pSG->aSegs[iSeg].pv, cbSeg);
188 pbDst += cbSeg;
204 uint8_t *pbDst = (uint8_t *)pvBuf; local
221 memcpy(pbDst, (uint8_t const *)pSG->aSegs[iSeg].pv + offSrc, cbToRead);
225 memcpy(pbDst, (uint8_t const *)pSG->aSegs[iSeg].pv + offSrc, cbChunk);
226 pbDst += cbChunk;
242 memcpy(pbDst, pSG->aSegs[iSeg].pv, cbToRead);
246 memcpy(pbDst, pS
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dmsacmdrv.h130 LPBYTE pbDst; member in struct:_ACMDRVSTREAMHEADER
H A Dmsacm.h566 LPBYTE pbDst; member in struct:_ACMSTREAMHEADER
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dmsacmdrv.h129 LPBYTE pbDst; member in struct:_ACMDRVSTREAMHEADER
H A Dmsacm.h566 LPBYTE pbDst; member in struct:_ACMSTREAMHEADER
/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsmemory.cpp292 uint8_t *pbDst = (uint8_t *)pSgBuf->paSegs[0].pvSeg; local
311 memcpy(pbDst, &pExtent->abData[offUnsigned - pExtent->off], cbThisRead);
317 pbDst += cbThisRead;
344 RT_BZERO(pbDst, cbThisRead);
350 pbDst += cbThisRead;
/vbox/src/VBox/Runtime/common/string/
H A Dstrtonum.cpp975 uint8_t *pbDst; local
982 pbDst = (uint8_t *)pv;
1009 *pbDst++ = (uchDigit1 << 4) | uchDigit2;
/vbox/src/VBox/VMM/VMMR3/
H A DVMMSwitcher.cpp145 * @param pbDst Where the switcher code was just copied.
146 * @param HCPhysDst The host physical address corresponding to @a pbDst.
148 static void vmmR3Switcher32On64IdtInit(PVM pVM, PVMMSWITCHERDEF pSwitcher, uint8_t *pbDst, RTHCPHYS HCPhysDst) argument
154 PX86DESC64GATE paIdt = (PX86DESC64GATE)(pbDst + pSwitcher->offGCCode);
185 * @param pbDst Where the switcher code was just copied.
186 * @param HCPhysDst The host physical address corresponding to @a pbDst.
188 static void vmmR3Switcher32On64IdtRelocate(PVM pVM, PVMMSWITCHERDEF pSwitcher, uint8_t *pbDst, RTHCPHYS HCPhysDst) argument
194 PX86DESC64GATE paIdt = (PX86DESC64GATE)(pbDst + pSwitcher->offGCCode);
306 uint8_t *pbDst = (uint8_t *)pVM->vmm.s.pvCoreCodeR3 + pVM->vmm.s.aoffSwitchers[iSwitcher];
307 memcpy(pbDst, pSwitche
[all...]
H A DPATM.cpp5162 * @param pbDst The output buffer.
5166 VMMR3_INT_DECL(int) PATMR3ReadOrgInstr(PVM pVM, RTGCPTR32 GCPtrInstr, uint8_t *pbDst, size_t cbToRead, size_t *pcbRead) argument
5195 case 5: pbDst[4] = pbSrc[4];
5196 case 4: pbDst[3] = pbSrc[3];
5197 case 3: pbDst[2] = pbSrc[2];
5198 case 2: pbDst[1] = pbSrc[1];
5199 case 1: pbDst[0] = pbSrc[0];
5202 memcpy(pbDst, pbSrc, cbToRead);
/vbox/src/VBox/Runtime/common/math/
H A Dbignum.cpp947 uint8_t *pbDst = (uint8_t *)pvBuf;
948 pbDst += cbWanted - 1;
956 *pbDst-- = (uint8_t)uElement;
958 *pbDst-- = (uint8_t)uElement;
960 *pbDst-- = (uint8_t)uElement;
962 *pbDst-- = (uint8_t)uElement;
965 *pbDst-- = (uint8_t)uElement;
967 *pbDst-- = (uint8_t)uElement;
969 *pbDst-- = (uint8_t)uElement;
971 *pbDst
[all...]
/vbox/src/VBox/Runtime/common/zip/
H A Dzip.cpp264 uint8_t *pbDst = pZip->u.Store.pb; local
270 size_t cb = sizeof(pZip->abBuffer) - (size_t)(pbDst - &pZip->abBuffer[0]); /* careful here, g++ 4.1.2 screws up easily */
278 pbDst = &pZip->abBuffer[0];
286 memcpy(pbDst, pvBuf, cb);
288 pbDst += cb;
292 pZip->u.Store.pb = pbDst;
/vbox/include/VBox/vmm/
H A Dpatm.h202 VMMR3_INT_DECL(int) PATMR3ReadOrgInstr(PVM pVM, RTGCPTR32 GCPtrInstr, uint8_t *pbDst, size_t cbToRead, size_t *pcbRead);
H A Dpdmifs.h635 * @param pbDst Destination frame buffer 0,0.
646 uint8_t *pbDst, int32_t xDst, int32_t yDst, uint32_t cxDst, uint32_t cyDst, uint32_t cbDstLine, uint32_t cDstBitsPerPixel));
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyProcess-win.cpp1716 uint8_t *pbDst = (uint8_t *)pvFree; local
1720 if ((uintptr_t)pbDst != uCopySrc)
1722 if ((uintptr_t)pbDst > uCopySrc)
1724 uintptr_t cbAdj = (uintptr_t)pbDst - uCopySrc;
1730 uintptr_t cbAdj = uCopySrc - (uintptr_t)pbDst;
1731 pbDst += cbAdj;
1739 rcNt = NtWriteVirtualMemory(hProcess, pbDst, pbSrc, cbSrc, &cbWritten);
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA.cpp3266 * @param pbDst Host destination pointer
3274 int vmsvgaGMRTransfer(PVGASTATE pThis, const SVGA3dTransferType enmTransferType, uint8_t *pbDst, int32_t cbDestPitch, argument
3305 uint8_t *pTemp = pbDst;
3308 pbDst = pSrc;
3319 memcpy(pbDst, pSrc, cbWidth * cHeight);
3325 memcpy(pbDst, pSrc, cbWidth);
3327 pbDst += cbDestPitch;
3352 uint8_t *pCurrentDest = pbDst;
3397 pbDst += cbDestPitch;
/vbox/src/VBox/Devices/Storage/
H A DDevAHCI.cpp2994 static void ataSCSIPadStr(uint8_t *pbDst, const char *pbSrc, uint32_t cbSize) argument
2999 pbDst[i] = *pbSrc++;
3001 pbDst[i] = ' ';
3005 static void ataPadString(uint8_t *pbDst, const char *pbSrc, uint32_t cbSize) argument
3010 pbDst[i ^ 1] = *pbSrc++;
3012 pbDst[i ^ 1] = ' ';
H A DDevATA.cpp1061 static void ataPadString(uint8_t *pbDst, const char *pbSrc, uint32_t cbSize) argument
1066 pbDst[i ^ 1] = *pbSrc++;
1068 pbDst[i ^ 1] = ' ';
1073 static void ataSCSIPadStr(uint8_t *pbDst, const char *pbSrc, uint32_t cbSize) argument
1078 pbDst[i] = *pbSrc++;
1080 pbDst[i] = ' ';
/vbox/src/VBox/Runtime/testcase/
H A DtstRTBigNum.cpp190 uint8_t *pbDst = abLittleEndian + cb - 1; local
193 *pbDst-- = *pbSrc++;
/vbox/src/VBox/Devices/USB/
H A DVUSBDevice.cpp650 #define COPY_DATA(pbDst, cbLeft, pvSrc, cbSrc) \

Completed in 273 milliseconds

12