Searched refs:pSrc (Results 51 - 75 of 253) sorted by relevance

1234567891011

/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Ddmxpict.h73 PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
78 PicturePtr pSrc, PicturePtr pDst,
91 PicturePtr pSrc, PicturePtr pDst,
96 PicturePtr pSrc, PicturePtr pDst,
H A Dmipict.h82 PicturePtr pSrc,
103 PicturePtr pSrc,
116 miIsSolidAlpha(PicturePtr pSrc);
127 PicturePtr pSrc,
135 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Ddmxpict.h73 PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
78 PicturePtr pSrc, PicturePtr pDst,
91 PicturePtr pSrc, PicturePtr pDst,
96 PicturePtr pSrc, PicturePtr pDst,
H A Dmipict.h82 PicturePtr pSrc,
103 PicturePtr pSrc,
116 miIsSolidAlpha(PicturePtr pSrc);
127 PicturePtr pSrc,
135 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Ddmxpict.h73 PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
78 PicturePtr pSrc, PicturePtr pDst,
91 PicturePtr pSrc, PicturePtr pDst,
96 PicturePtr pSrc, PicturePtr pDst,
H A Dmipict.h82 PicturePtr pSrc,
103 PicturePtr pSrc,
116 miIsSolidAlpha(PicturePtr pSrc);
127 PicturePtr pSrc,
135 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dmipict.h82 PicturePtr pSrc,
103 PicturePtr pSrc,
116 miIsSolidAlpha(PicturePtr pSrc);
127 PicturePtr pSrc,
135 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dmipict.h82 PicturePtr pSrc,
103 PicturePtr pSrc,
116 miIsSolidAlpha(PicturePtr pSrc);
127 PicturePtr pSrc,
135 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dcfb8_32.h60 DrawablePtr pSrc,
70 DrawablePtr pSrc,
167 DrawablePtr pSrc,
178 DrawablePtr pSrc,
188 DrawablePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dcfb8_32.h60 DrawablePtr pSrc,
70 DrawablePtr pSrc,
167 DrawablePtr pSrc,
178 DrawablePtr pSrc,
188 DrawablePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dmipict.h88 PicturePtr pSrc,
113 PicturePtr pSrc,
133 miIsSolidAlpha (PicturePtr pSrc);
144 PicturePtr pSrc,
154 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dcfb8_32.h61 DrawablePtr pSrc,
71 DrawablePtr pSrc,
168 DrawablePtr pSrc,
179 DrawablePtr pSrc,
189 DrawablePtr pSrc,
H A Dexa.h356 * @param pSrc source pixmap
362 * pSrcPicture, pMaskPicture, and pDstPicture. The pSrc, pMask, and
406 PixmapPtr pSrc,
502 * @param pSrc source pixmap in host memory
511 * statically allocated area) in offscreen memory, copy pSrc to that
521 Bool (*UploadToScratch) (PixmapPtr pSrc,
525 * DownloadFromScreen() loads a rectangle of data from pSrc into dst
527 * @param pSrc source pixmap
535 * DownloadFromScreen() copies data from offscreen memory in pSrc from
554 Bool (*DownloadFromScreen)(PixmapPtr pSrc,
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dcfb8_32.h61 DrawablePtr pSrc,
71 DrawablePtr pSrc,
168 DrawablePtr pSrc,
179 DrawablePtr pSrc,
189 DrawablePtr pSrc,
/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-bitstring.cpp345 RTDECL(int) RTAsn1BitString_Clone(PRTASN1BITSTRING pThis, PCRTASN1BITSTRING pSrc, PCRTASN1ALLOCATORVTABLE pAllocator) argument
347 AssertPtr(pSrc); AssertPtr(pThis); AssertPtr(pAllocator);
350 if (RTAsn1BitString_IsPresent(pSrc))
352 AssertReturn(pSrc->Asn1Core.pOps == &g_RTAsn1BitString_Vtable, VERR_INTERNAL_ERROR_3);
355 if (!pSrc->pEncapsulated)
356 rc = RTAsn1Core_CloneContent(&pThis->Asn1Core, &pSrc->Asn1Core, pAllocator);
358 rc = RTAsn1Core_CloneNoContent(&pThis->Asn1Core, &pSrc->Asn1Core);
363 pThis->cBits = pSrc->cBits;
364 pThis->cMaxBits = pSrc->cMaxBits;
365 if (!pSrc
[all...]
H A Dasn1-ut-integer.cpp375 RTDECL(int) RTAsn1Integer_Clone(PRTASN1INTEGER pThis, PCRTASN1INTEGER pSrc, PCRTASN1ALLOCATORVTABLE pAllocator) argument
377 AssertPtr(pSrc); AssertPtr(pThis); AssertPtr(pAllocator);
379 if (RTAsn1Integer_IsPresent(pSrc))
381 AssertReturn(pSrc->Asn1Core.pOps == &g_RTAsn1Integer_Vtable, VERR_INTERNAL_ERROR_3);
384 if ( pSrc->Asn1Core.cb != 1
385 || pSrc->uValue.u >= RT_ELEMENTS(g_abSmall))
388 rc = RTAsn1Core_CloneContent(&pThis->Asn1Core, &pSrc->Asn1Core, pAllocator);
395 rc = RTAsn1Core_CloneNoContent(&pThis->Asn1Core, &pSrc->Asn1Core);
398 Assert(g_abSmall[pSrc->uValue.u] == pSrc
[all...]
H A Dasn1-basics.cpp503 RTDECL(int) RTAsn1SeqOfCore_Clone(PRTASN1SEQOFCORE pThis, PCRTASN1COREVTABLE pVtable, PCRTASN1SEQOFCORE pSrc)
505 AssertReturn(pSrc->Asn1Core.pOps == pVtable, VERR_ASN1_INTERNAL_ERROR_5);
506 return RTAsn1Core_CloneNoContent(&pThis->Asn1Core, &pSrc->Asn1Core);
524 RTDECL(int) RTAsn1SetOfCore_Clone(PRTASN1SETOFCORE pThis, PCRTASN1COREVTABLE pVtable, PCRTASN1SETOFCORE pSrc)
526 AssertReturn(pSrc->Asn1Core.pOps == pVtable, VERR_ASN1_INTERNAL_ERROR_5);
527 return RTAsn1Core_CloneNoContent(&pThis->Asn1Core, &pSrc->Asn1Core);
545 RTDECL(int) RTAsn1SequenceCore_Clone(PRTASN1SEQUENCECORE pThis, PCRTASN1COREVTABLE pVtable, PCRTASN1SEQUENCECORE pSrc)
547 AssertReturn(pSrc->Asn1Core.pOps == pVtable, VERR_ASN1_INTERNAL_ERROR_5);
548 return RTAsn1Core_CloneNoContent(&pThis->Asn1Core, &pSrc->Asn1Core);
566 RTDECL(int) RTAsn1SetCore_Clone(PRTASN1SETCORE pThis, PCRTASN1COREVTABLE pVtable, PCRTASN1SETCORE pSrc)
[all...]
H A Dasn1-ut-octetstring.cpp262 RTDECL(int) RTAsn1OctetString_Clone(PRTASN1OCTETSTRING pThis, PCRTASN1OCTETSTRING pSrc, PCRTASN1ALLOCATORVTABLE pAllocator) argument
264 AssertPtr(pSrc); AssertPtr(pThis); AssertPtr(pAllocator);
267 if (RTAsn1OctetString_IsPresent(pSrc))
269 AssertReturn(pSrc->Asn1Core.pOps == &g_RTAsn1OctetString_Vtable, VERR_INTERNAL_ERROR_3);
272 if (!pSrc->pEncapsulated)
273 rc = RTAsn1Core_CloneContent(&pThis->Asn1Core, &pSrc->Asn1Core, pAllocator);
275 rc = RTAsn1Core_CloneNoContent(&pThis->Asn1Core, &pSrc->Asn1Core);
280 if (pSrc->pEncapsulated)
282 PCRTASN1COREVTABLE pOps = pSrc->pEncapsulated->pOps;
290 rc = pOps->pfnClone(pThis->pEncapsulated, pSrc
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/
H A DVBoxDispMouse.cpp27 BYTE *pSrc, *pDst, bit; local
42 pSrc = (BYTE*)psoMask->pvScan0;
48 memcpy(pDst+y*dstBytesPerLine, pSrc+(LONG)y*psoMask->lDelta, dstBytesPerLine);
52 pSrc = (BYTE*)psoMask->pvScan0 + (LONG)srcMaskH*psoMask->lDelta;
62 *(ULONG*)&pDst[y*dstBytesPerLine+x*4] = (pSrc[(LONG)y*psoMask->lDelta+x/8] & RT_BIT(bit)) ? 0x00FFFFFF : 0;
155 PBYTE pSrc = (PBYTE) psoBitmap->pvScan0; local
166 BYTE bSrc = pSrc[(LONG)y*psoBitmap->lDelta+x*1];
182 USHORT usSrc = *(USHORT*)&pSrc[(LONG)y*psoBitmap->lDelta+x*2];
198 pDst[(LONG)y*psoRes->lDelta+x*4+0] = pSrc[(LONG)y*psoBitmap->lDelta+x*3+0];
199 pDst[(LONG)y*psoRes->lDelta+x*4+1] = pSrc[(LON
240 BYTE *pSrc, *pDst, bit; local
[all...]
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/xf24_32bpp/
H A Dcfb24_32.h38 DrawablePtr pSrc,
49 DrawablePtr pSrc,
60 DrawablePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/render/
H A Dpicturestr.h148 PicturePtr pSrc,
161 PicturePtr pSrc,
182 PicturePtr pSrc,
191 PicturePtr pSrc,
200 PicturePtr pSrc,
209 PicturePtr pSrc,
414 PicturePtr pSrc,
428 PicturePtr pSrc,
446 PicturePtr pSrc,
456 PicturePtr pSrc,
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dfbpict.h34 PicturePtr pSrc,
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dmsdadc.idl54 [in] void *pSrc,
72 [in, size_is(*pcbSrcLength)] void *pSrc);
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_blitter.h55 VBOXBLITTERDECL(void) CrMBltImgRect(PCCR_BLITTER_IMG pSrc, PCRTPOINT pSrcDataPoint, bool fSrcInvert, PCRTRECT pCopyRect,
57 VBOXBLITTERDECL(void) CrMBltImg(PCCR_BLITTER_IMG pSrc, PCRTPOINT pPos, uint32_t cRects, PCRTRECT pRects, PCR_BLITTER_IMG pDst);
58 VBOXBLITTERDECL(void) CrMBltImgRectScaled(PCCR_BLITTER_IMG pSrc, PCRTPOINT pPos, bool fSrcInvert, PCRTRECT pCopyRect,
60 VBOXBLITTERDECL(void) CrMBltImgScaled(PCCR_BLITTER_IMG pSrc, PCRTRECTSIZE pSrcRectSize, PCRTRECT pDstRect, uint32_t cRects,
128 typedef DECLCALLBACK(int) FNCRBLT_BLITTER(struct CR_BLITTER *pBlitter, PCVBOXVR_TEXTURE pSrc, PCRTRECT paSrcRect,
221 VBOXBLITTERDECL(void) CrBltBlitTexMural(PCR_BLITTER pBlitter, bool fBb, PCVBOXVR_TEXTURE pSrc, PCRTRECT paSrcRects,
223 VBOXBLITTERDECL(void) CrBltBlitTexTex(PCR_BLITTER pBlitter, PCVBOXVR_TEXTURE pSrc, PCRTRECT pSrcRect, PCVBOXVR_TEXTURE pDst,
225 VBOXBLITTERDECL(int) CrBltImgGetTex(PCR_BLITTER pBlitter, PCVBOXVR_TEXTURE pSrc, GLenum enmFormat, PCR_BLITTER_IMG pDst);
/vbox/src/VBox/HostDrivers/VBoxUSB/win/cmn/
H A DVBoxDrvTool.cpp208 VBOXDRVTOOL_DECL(NTSTATUS) VBoxDrvToolStrCopy(PUNICODE_STRING pDst, CONST PUNICODE_STRING pSrc)
210 USHORT cbLength = pSrc->Length + sizeof (pDst->Buffer[0]);
215 RtlMoveMemory(pDst->Buffer, pSrc->Buffer, pSrc->Length);
216 pDst->Buffer[pSrc->Length / sizeof (pDst->Buffer[0])] = L'\0';
217 pDst->Length = pSrc->Length;

Completed in 158 milliseconds

1234567891011