Searched defs:src (Results 201 - 225 of 259) sorted by relevance

1234567891011

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dshader.c598 struct wined3d_shader_src_param src, rel_addr; local
600 fe->shader_read_src_param(fe_data, &ptr, &src, &rel_addr);
605 reg_maps->integer_constants |= 1 << src.reg.idx;
609 fe->shader_read_src_param(fe_data, &ptr, &src, &rel_addr);
610 reg_maps->integer_constants |= 1 << src.reg.idx;
624 struct wined3d_shader_src_param src, rel_addr; local
626 fe->shader_read_src_param(fe_data, &ptr, &src, &rel_addr);
627 reg_maps->labels |= 1 << src.reg.idx;
1121 ins.src = src_param;
H A Dshader_sm1.c448 struct wined3d_shader_src_param *src)
450 src->reg.type = ((param & WINED3DSP_REGTYPE_MASK) >> WINED3DSP_REGTYPE_SHIFT)
452 src->reg.idx = param & WINED3DSP_REGNUM_MASK;
453 src->reg.array_idx = ~0U;
454 src->swizzle = (param & WINED3DSP_SWIZZLE_MASK) >> WINED3DSP_SWIZZLE_SHIFT;
455 src->modifiers = (param & WINED3DSP_SRCMOD_MASK) >> WINED3DSP_SRCMOD_SHIFT;
456 src->reg.rel_addr = rel_addr;
505 struct wined3d_shader_src_param src; local
507 shader_parse_src_param(token, token & WINED3DSHADER_ADDRMODE_RELATIVE ? &rel_addr : NULL, &src);
508 shader_dump_src_param(&src,
447 shader_parse_src_param(DWORD param, const struct wined3d_shader_src_param *rel_addr, struct wined3d_shader_src_param *src) argument
[all...]
H A Dsurface_base.c680 static void convert_r32_float_r16_float(const BYTE *src, BYTE *dst, DWORD pitch_in, DWORD pitch_out, argument
689 src_f = (const float *)(src + y * pitch_in);
697 static void convert_r5g6b5_x8r8g8b8(const BYTE *src, BYTE *dst, argument
724 const WORD *src_line = (const WORD *)(src + y * pitch_in);
737 static void convert_a8r8g8b8_x8r8g8b8(const BYTE *src, BYTE *dst, argument
746 const DWORD *src_line = (const DWORD *)(src + y * pitch_in);
761 static void convert_yuy2_x8r8g8b8(const BYTE *src, BYTE *dst, argument
771 const BYTE *src_line = src + y * pitch_in;
807 void (*convert)(const BYTE *src, BYTE *dst, DWORD pitch_in, DWORD pitch_out, unsigned int w, unsigned int h);
1313 /* no overlap, or dst above src, s
[all...]
H A Dstate.c352 FIXME("Unrecognized src blend value %d\n", stateblock->renderState[WINED3DRS_SRCBLEND]);
360 WARN("WINED3DRS_EDGEANTIALIAS enabled, but unexpected src blending param\n");
443 FIXME("Unrecognized src blend alpha value %d\n", stateblock->renderState[WINED3DRS_SRCBLENDALPHA]);
449 TRACE("glBlendFunc src=%x, dst=%x\n", srcBlend, dstBlend);
4150 const DWORD *src = (const DWORD *)ptr; local
4151 DWORD c = *src & 0xff00ff00;
4152 c |= (*src & 0xff0000) >> 16;
4153 c |= (*src & 0xff) << 16;
H A Dsurface.c2626 static HRESULT d3dfmt_convert_surface(const BYTE *src, BYTE *dst, UINT pitch, UINT width, argument
2631 TRACE("(%p)->(%p),(%d,%d,%d,%d,%p)\n", src, dst, pitch, height, outpitch, convert,This);
2636 memcpy(dst, src, pitch * height);
2654 source = src + pitch * y;
2687 Source = (const WORD *)(src + y * pitch);
2710 Source = (const WORD *)(src + y * pitch);
2734 source = src + pitch * y;
2757 source = src + pitch * y;
3445 GLuint src, backup = 0; local
3548 src
[all...]
H A Dutils.c250 void (*convert)(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height);
253 static void convert_l4a4_unorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
265 Source = src + y * pitch;
276 static void convert_r5g5_snorm_l6_unorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
284 Source = (const WORD *)(src + y * pitch);
300 static void convert_r5g5_snorm_l6_unorm_nv(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
312 Source = (const WORD *)(src + y * pitch);
336 static void convert_r8g8_snorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
345 Source = (const short *)(src + y * pitch);
358 static void convert_r8g8_snorm_l8x8_unorm(const BYTE *src, BYT argument
383 convert_r8g8_snorm_l8x8_unorm_nv(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
408 convert_r8g8b8a8_snorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
430 convert_r16g16_snorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
452 convert_r16g16(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
478 convert_r32g32_float(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
501 convert_s1_uint_d15_unorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
523 convert_s4x4_uint_d24_unorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
540 convert_s8_uint_d24_float(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dshader_sm1.c455 struct wined3d_shader_src_param *src)
457 src->reg.type = ((param & WINED3DSP_REGTYPE_MASK) >> WINED3DSP_REGTYPE_SHIFT)
459 src->reg.data_type = WINED3D_DATA_FLOAT;
460 src->reg.idx[0].offset = param & WINED3DSP_REGNUM_MASK;
461 src->reg.idx[0].rel_addr = rel_addr;
462 src->reg.idx[1].offset = ~0U;
463 src->reg.idx[1].rel_addr = NULL;
464 src->swizzle = (param & WINED3DSP_SWIZZLE_MASK) >> WINED3DSP_SWIZZLE_SHIFT;
465 src->modifiers = (param & WINED3DSP_SRCMOD_MASK) >> WINED3DSP_SRCMOD_SHIFT;
516 struct wined3d_shader_src_param src; local
454 shader_parse_src_param(DWORD param, const struct wined3d_shader_src_param *rel_addr, struct wined3d_shader_src_param *src) argument
[all...]
H A Dshader_sm4.c190 struct list src; member in struct:wined3d_sm4_data
414 list_init(&priv->src);
424 list_move_head(&priv->src_free, &priv->src);
449 list_add_tail(&priv->src, elem);
499 ERR("Failed to get src param for relative addressing.\n");
698 list_move_head(&priv->src_free, &priv->src);
729 ins->src = priv->src_param;
742 shader_sm4_read_src_param(priv, &p, WINED3D_DATA_FLOAT, &ins->declaration.src);
H A Dutils.c264 void (*convert)(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height);
267 static void convert_l4a4_unorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
279 Source = src + y * pitch;
290 static void convert_r5g5_snorm_l6_unorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
298 Source = (const WORD *)(src + y * pitch);
314 static void convert_r5g5_snorm_l6_unorm_nv(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
326 Source = (const WORD *)(src + y * pitch);
350 static void convert_r8g8_snorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
359 Source = (const short *)(src + y * pitch);
372 static void convert_r8g8_snorm_l8x8_unorm(const BYTE *src, BYT argument
397 convert_r8g8_snorm_l8x8_unorm_nv(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
422 convert_r8g8b8a8_snorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
444 convert_r16g16_snorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
466 convert_r16g16(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
492 convert_r32g32_float(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
515 convert_s1_uint_d15_unorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
537 convert_s4x4_uint_d24_unorm(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
554 convert_s8_uint_d24_float(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height) argument
[all...]
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dglx.c489 VBOXGLXTAG(glXCopyContext)( Display *dpy, GLXContext src, GLXContext dst, argument
499 (void) src;
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/
H A DxptiInterfaceInfoManager.cpp1344 TwoWorkingSets(xptiWorkingSet* src, xptiWorkingSet* dest) argument
1345 : aSrcWorkingSet(src), aDestWorkingSet(dest) {}
1454 // NOTE: Storing with dest, but alloc'ing from src. This is intentional.
1506 // NOTE: Storing with dest, but alloc'ing from src. This is intentional.
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Drpng2-x.c853 uch *src; local
1073 src = bg_data + row*bg_rowbytes;
1076 red = *src++;
1077 green = *src++;
1078 blue = *src++;
1095 src = bg_data + row*bg_rowbytes;
1098 red = ((ush)(*src) << 8); ++src;
1099 green = ((ush)(*src) << 8); ++src;
1132 uch *src, *src2=NULL; local
[all...]
/vbox/src/recompiler/target-i386/
H A Dops_sse.h815 static inline uint64_t helper_extrq(uint64_t src, int shift, int len) argument
824 return (src >> shift) & mask;
837 static inline uint64_t helper_insertq(uint64_t src, int shift, int len) argument
846 return (src & ~(mask << shift)) | ((src & mask) << shift);
/vbox/src/recompiler/tcg/i386/
H A Dtcg-target.c573 /* Generate dest op= src. Uses the same ARITH_* codes as tgen_arithi. */
574 static inline void tgen_arithr(TCGContext *s, int subop, int dest, int src) argument
580 tcg_out_modrm(s, OPC_ARITH_GvEv + (subop << 3) + ext, dest, src);
671 static inline void tcg_out_ext8u(TCGContext *s, int dest, int src) argument
674 assert(src < 4 || TCG_TARGET_REG_BITS == 64);
675 tcg_out_modrm(s, OPC_MOVZBL + P_REXB_RM, dest, src);
678 static void tcg_out_ext8s(TCGContext *s, int dest, int src, int rexw) argument
681 assert(src < 4 || TCG_TARGET_REG_BITS == 64);
682 tcg_out_modrm(s, OPC_MOVSBL + P_REXB_RM + rexw, dest, src);
685 static inline void tcg_out_ext16u(TCGContext *s, int dest, int src) argument
691 tcg_out_ext16s(TCGContext *s, int dest, int src, int rexw) argument
697 tcg_out_ext32u(TCGContext *s, int dest, int src) argument
703 tcg_out_ext32s(TCGContext *s, int dest, int src) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c96 _PyLong_Copy(PyLongObject *src) argument
101 assert(src != NULL);
102 i = src->ob_size;
107 result->ob_size = src->ob_size;
109 result->ob_digit[i] = src->ob_digit[i];
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-win.cpp1818 int vmsvga3dSurfaceCopy(PVGASTATE pThis, SVGA3dSurfaceImageId dest, SVGA3dSurfaceImageId src, uint32_t cCopyBoxes, SVGA3dCopyBox *pBox) argument
1822 uint32_t sidSrc = src.sid;
1836 AssertReturn(pSurfaceSrc->faces[0].numMipLevels > src.mipmap, VERR_INVALID_PARAMETER);
1917 Log(("vmsvga3dSurfaceCopy: (StretchRect) copy src sid=%x face=%d mipmap=%d (%d,%d)(%d,%d) to dest sid=%x face=%d mipmap=%d (%d,%d)\n", sidSrc, src.face, src.mipmap, RectSrc.left, RectSrc.top, RectSrc.right, RectSrc.bottom, sidDest, dest.face, dest.mipmap, pBox[i].x, pBox[i].y));
1931 hr = pSrcTexture->GetSurfaceLevel(src.mipmap /* Texture level */,
1976 Log(("vmsvga3dSurfaceCopy: (manual) copy src=%x src=%x face=%d (%d,%d)(%d,%d) to dest=%x src
2192 vmsvga3dSurfaceStretchBlt(PVGASTATE pThis, SVGA3dSurfaceImageId dest, SVGA3dBox destBox, SVGA3dSurfaceImageId src, SVGA3dBox srcBox, SVGA3dStretchBltMode mode) argument
2615 vmsvga3dSurfaceBlitToScreen(PVGASTATE pThis, uint32_t dest, SVGASignedRect destRect, SVGA3dSurfaceImageId src, SVGASignedRect srcRect, uint32_t cRects, SVGASignedRect *pRect) argument
[all...]
/vbox/src/VBox/Main/src-client/
H A DDisplayImpl.cpp213 uint8_t *src = pu8Data; local
222 src,
2047 uint8_t *src = pu8Data; local
2056 src,
/vbox/src/VBox/Devices/Graphics/vmsvga/
H A Dsvga3d_shaderdefs.h462 SVGA3dShaderSrcToken src; member in union:__anon14794
516 SVGA3dShaderSrcToken src;
517 src.value = token;
518 return (SVGA3dShaderRegType)(src.type_upper << 3 | src.type_lower);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/
H A Ddevice.c959 struct d3d8_surface *src = unsafe_impl_from_IDirect3DSurface8(src_surface); local
974 wined3d_resource = wined3d_surface_get_resource(src->wined3d_surface);
1021 src->wined3d_surface, &rect, 0, NULL, WINED3D_TEXF_POINT);
1037 src->wined3d_surface, &src_rects[i], 0, NULL, WINED3D_TEXF_POINT);
1049 src->wined3d_surface, &src_rects[i], 0, NULL, WINED3D_TEXF_POINT);
/vbox/include/VBox/
H A Dshflsvc.h1330 * Points to SHFLSTRING src.
1332 HGCMFunctionParameter src; member in struct:_VBoxSFRename
/vbox/src/libs/libxml2-2.6.31/
H A Dvalid.c3884 const xmlChar *src; local
3925 src = value;
3927 while (*src == 0x20) src++;
3928 while (*src != 0) {
3929 if (*src == 0x20) {
3930 while (*src == 0x20) src++;
3931 if (*src != 0)
3934 *dst++ = *src
3970 const xmlChar *src; local
[all...]
H A DxmlIO.c1492 * @src: Uncompressed source content to append to buffer
1501 xmlZMemBuffAppend( xmlZMemBuffPtr buff, const char * src, int len ) { argument
1506 if ( ( buff == NULL ) || ( src == NULL ) )
1510 buff->zctrl.next_in = (unsigned char *)src;
1534 buff->crc = crc32( buff->crc, (unsigned char *)src, len );
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsLocalFileOSX.cpp318 nsLocalFile::nsLocalFile(const nsLocalFile& src) : argument
319 mBaseRef(src.mBaseRef),
320 mTargetRef(src.mTargetRef),
321 mCachedFSRef(src.mCachedFSRef),
322 mCachedFSRefValid(src.mCachedFSRefValid),
323 mFollowLinks(src.mFollowLinks),
324 mFollowLinksDirty(src.mFollowLinksDirty)
/vbox/src/recompiler/
H A DVBoxRecompiler.c5485 void *memcpy(void *dst, const void *src, size_t size) argument
5487 uint8_t*pbDst = dst, *pbSrc = src;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaEnc.c2092 static void LzmaEnc_SetInputBuf(CLzmaEnc *p, const Byte *src, SizeT srcLen) argument
2095 p->seqBufInStream.data = src;
2099 SRes LzmaEnc_MemPrepare(CLzmaEncHandle pp, const Byte *src, SizeT srcLen, argument
2103 LzmaEnc_SetInputBuf(p, src, srcLen);
2251 SRes LzmaEnc_MemEncode(CLzmaEncHandle pp, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, argument
2259 LzmaEnc_SetInputBuf(p, src, srcLen);
2276 SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, argument
2290 res = LzmaEnc_MemEncode(p, dest, destLen, src, srcLen,

Completed in 346 milliseconds

1234567891011