Searched defs:src_y (Results 51 - 75 of 131) sorted by relevance

123456

/external/pixman/test/
H A Dscaling-test.c62 int src_x, src_y; local
131 src_y = -(src_height / 4) + prng_rand_n (src_height * 3 / 2);
250 printf ("src_x=%d, src_y=%d, dst_x=%d, dst_y=%d\n",
251 src_x, src_y, dst_x, dst_y);
338 src_x, src_y, 0, 0, dst_x, dst_y, w, h);
341 src_x, src_y, mask_x, mask_y, dst_x, dst_y, w, h);
/external/chromium_org/content/common/gpu/media/
H A Dvaapi_h264_decoder_unittest.cc213 uint8_t* src_y = mem_byte_ptr + image->offsets[0]; local
225 int rc = libyuv::NV12ToI420(src_y,
/external/chromium_org/pdf/
H A Ddraw_utils.cc179 uint32 src_y = static_cast<uint32>(y * y_ratio); local
181 pp::Point(src_rc.x() + src_x, src_rc.y() + src_y));
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Drotate.cc1155 int I420Rotate(const uint8* src_y, int src_stride_y, argument
1165 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 ||
1174 src_y = src_y + (height - 1) * src_stride_y;
1185 return I420Copy(src_y, src_stride_y,
1193 RotatePlane90(src_y, src_stride_y,
1204 RotatePlane270(src_y, src_stride_y,
1215 RotatePlane180(src_y, src_stride_y,
1232 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y, argument
1241 if (!src_y || !src_u
[all...]
H A Dconvert.cc31 static int I4xxToI420(const uint8* src_y, int src_stride_y, argument
47 ScalePlane(src_y, src_stride_y, src_y_width, src_y_height,
63 int I420Copy(const uint8* src_y, int src_stride_y, argument
72 if (!src_y || !src_u || !src_v ||
81 src_y = src_y + (height - 1) * src_stride_y;
90 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
101 int I422ToI420(const uint8* src_y, int src_stride_y, argument
109 return I4xxToI420(src_y, src_stride_y,
122 int I444ToI420(const uint8* src_y, in argument
142 I411ToI420(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
162 I400ToI420(const uint8* src_y, int src_stride_y, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
241 X420ToI420(const uint8* src_y, int src_stride_y0, int src_stride_y1, const uint8* src_uv, int src_stride_uv, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
349 NV12ToI420(const uint8* src_y, int src_stride_y, const uint8* src_uv, int src_stride_uv, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
365 NV21ToI420(const uint8* src_y, int src_stride_y, const uint8* src_vu, int src_stride_vu, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
397 Q420ToI420(const uint8* src_y, int src_stride_y, const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
[all...]
H A Dconvert_from.cc34 static int I420ToI4xx(const uint8* src_y, int src_stride_y, argument
50 ScalePlane(src_y, src_stride_y, src_y_width, src_y_height,
65 int I420ToI422(const uint8* src_y, int src_stride_y, argument
74 return I420ToI4xx(src_y, src_stride_y,
87 int I420ToI444(const uint8* src_y, int src_stride_y, argument
96 return I420ToI4xx(src_y, src_stride_y,
109 int I420ToI411(const uint8* src_y, int src_stride_y, argument
118 return I420ToI4xx(src_y, src_stride_y,
130 int I400Copy(const uint8* src_y, int src_stride_y, argument
133 if (!src_y || !dst_
148 I422ToYUY2(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_yuy2, int dst_stride_yuy2, int width, int height) argument
203 I420ToYUY2(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_yuy2, int dst_stride_yuy2, int width, int height) argument
254 I422ToUYVY(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_uyvy, int dst_stride_uyvy, int width, int height) argument
309 I420ToUYVY(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_uyvy, int dst_stride_uyvy, int width, int height) argument
360 I420ToNV12(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
441 I420ToNV21(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_y, int dst_stride_y, uint8* dst_vu, int dst_stride_vu, int width, int height) argument
457 I420ToARGB(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
529 I420ToBGRA(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_bgra, int dst_stride_bgra, int width, int height) argument
591 I420ToABGR(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_abgr, int dst_stride_abgr, int width, int height) argument
645 I420ToRGBA(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgba, int dst_stride_rgba, int width, int height) argument
699 I420ToRGB24(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgb24, int dst_stride_rgb24, int width, int height) argument
750 I420ToRAW(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_raw, int dst_stride_raw, int width, int height) argument
801 I420ToARGB1555(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_argb1555, int dst_stride_argb1555, int width, int height) argument
853 I420ToARGB4444(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_argb4444, int dst_stride_argb4444, int width, int height) argument
904 I420ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
[all...]
H A Dscale.cc1595 int I420Scale(const uint8* src_y, int src_stride_y, argument
1608 if (!src_y || !src_u || !src_v || src_width == 0 || src_height == 0 ||
1613 ScalePlane(src_y, src_stride_y, src_width, src_height,
1626 int I420Scale_16(const uint16* src_y, int src_stride_y, argument
1639 if (!src_y || !src_u || !src_v || src_width == 0 || src_height == 0 ||
1644 ScalePlane_16(src_y, src_stride_y, src_width, src_height,
1658 int Scale(const uint8* src_y, const uint8* src_u, const uint8* src_v, argument
1665 return I420Scale(src_y, src_stride_y,
1688 const uint8* src_y = src; local
1702 return I420Scale(src_y, src_widt
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_convolve.c76 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride]; local
80 sum += src_y[k * src_stride] * y_filter[k];
99 const unsigned char *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride]; local
103 sum += src_y[k * src_stride] * y_filter[k];
350 const uint16_t *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride]; local
354 sum += src_y[k * src_stride] * y_filter[k];
376 const uint16_t *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride]; local
380 sum += src_y[k * src_stride] * y_filter[k];
/external/chromium_org/third_party/libyuv/source/
H A Drotate.cc1155 int I420Rotate(const uint8* src_y, int src_stride_y, argument
1165 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 ||
1174 src_y = src_y + (height - 1) * src_stride_y;
1185 return I420Copy(src_y, src_stride_y,
1193 RotatePlane90(src_y, src_stride_y,
1204 RotatePlane270(src_y, src_stride_y,
1215 RotatePlane180(src_y, src_stride_y,
1232 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y, argument
1241 if (!src_y || !src_u
[all...]
H A Dconvert.cc31 static int I4xxToI420(const uint8* src_y, int src_stride_y, argument
47 ScalePlane(src_y, src_stride_y, src_y_width, src_y_height,
63 int I420Copy(const uint8* src_y, int src_stride_y, argument
72 if (!src_y || !src_u || !src_v ||
81 src_y = src_y + (height - 1) * src_stride_y;
90 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
101 int I422ToI420(const uint8* src_y, int src_stride_y, argument
109 return I4xxToI420(src_y, src_stride_y,
122 int I444ToI420(const uint8* src_y, in argument
142 I411ToI420(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
162 I400ToI420(const uint8* src_y, int src_stride_y, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
241 X420ToI420(const uint8* src_y, int src_stride_y0, int src_stride_y1, const uint8* src_uv, int src_stride_uv, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
349 NV12ToI420(const uint8* src_y, int src_stride_y, const uint8* src_uv, int src_stride_uv, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
365 NV21ToI420(const uint8* src_y, int src_stride_y, const uint8* src_vu, int src_stride_vu, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
397 Q420ToI420(const uint8* src_y, int src_stride_y, const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
[all...]
H A Dconvert_from.cc34 static int I420ToI4xx(const uint8* src_y, int src_stride_y, argument
50 ScalePlane(src_y, src_stride_y, src_y_width, src_y_height,
65 int I420ToI422(const uint8* src_y, int src_stride_y, argument
74 return I420ToI4xx(src_y, src_stride_y,
87 int I420ToI444(const uint8* src_y, int src_stride_y, argument
96 return I420ToI4xx(src_y, src_stride_y,
109 int I420ToI411(const uint8* src_y, int src_stride_y, argument
118 return I420ToI4xx(src_y, src_stride_y,
130 int I400Copy(const uint8* src_y, int src_stride_y, argument
133 if (!src_y || !dst_
148 I422ToYUY2(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_yuy2, int dst_stride_yuy2, int width, int height) argument
203 I420ToYUY2(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_yuy2, int dst_stride_yuy2, int width, int height) argument
254 I422ToUYVY(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_uyvy, int dst_stride_uyvy, int width, int height) argument
309 I420ToUYVY(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_uyvy, int dst_stride_uyvy, int width, int height) argument
360 I420ToNV12(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
441 I420ToNV21(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_y, int dst_stride_y, uint8* dst_vu, int dst_stride_vu, int width, int height) argument
457 I420ToARGB(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
529 I420ToBGRA(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_bgra, int dst_stride_bgra, int width, int height) argument
591 I420ToABGR(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_abgr, int dst_stride_abgr, int width, int height) argument
645 I420ToRGBA(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgba, int dst_stride_rgba, int width, int height) argument
699 I420ToRGB24(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgb24, int dst_stride_rgb24, int width, int height) argument
750 I420ToRAW(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_raw, int dst_stride_raw, int width, int height) argument
801 I420ToARGB1555(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_argb1555, int dst_stride_argb1555, int width, int height) argument
853 I420ToARGB4444(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_argb4444, int dst_stride_argb4444, int width, int height) argument
904 I420ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
[all...]
H A Dscale.cc1595 int I420Scale(const uint8* src_y, int src_stride_y, argument
1608 if (!src_y || !src_u || !src_v || src_width == 0 || src_height == 0 ||
1613 ScalePlane(src_y, src_stride_y, src_width, src_height,
1626 int I420Scale_16(const uint16* src_y, int src_stride_y, argument
1639 if (!src_y || !src_u || !src_v || src_width == 0 || src_height == 0 ||
1644 ScalePlane_16(src_y, src_stride_y, src_width, src_height,
1658 int Scale(const uint8* src_y, const uint8* src_u, const uint8* src_v, argument
1665 return I420Scale(src_y, src_stride_y,
1688 const uint8* src_y = src; local
1702 return I420Scale(src_y, src_widt
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format.c537 unsigned src_x, unsigned src_y,
558 src_x, src_y);
565 assert(src_y % src_format_desc->block.height == 0);
568 src_row = (const uint8_t *)src + src_y*src_stride + src_x*(src_format_desc->block.bits/8);
532 util_format_translate(enum pipe_format dst_format, void *dst, unsigned dst_stride, unsigned dst_x, unsigned dst_y, enum pipe_format src_format, const void *src, unsigned src_stride, unsigned src_x, unsigned src_y, unsigned width, unsigned height) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/
H A Dsubpicture.c172 unsigned src_x, unsigned src_y)
185 src, src_stride, src_x, src_y);
170 upload_sampler(struct pipe_context *pipe, struct pipe_sampler_view *dst, const struct pipe_box *dst_box, const void *src, unsigned src_stride, unsigned src_x, unsigned src_y) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_blit.c101 GLshort src_x, GLshort src_y,
144 src_buffer, src_pitch, src_offset, src_x, src_y,
207 OUT_BATCH((src_y << 16) | src_x);
91 intelEmitCopyBlit(struct intel_context *intel, GLuint cpp, GLshort src_pitch, drm_intel_bo *src_buffer, GLuint src_offset, uint32_t src_tiling, GLshort dst_pitch, drm_intel_bo *dst_buffer, GLuint dst_offset, uint32_t dst_tiling, GLshort src_x, GLshort src_y, GLshort dst_x, GLshort dst_y, GLshort w, GLshort h, GLenum logic_op) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_blit.c101 GLshort src_x, GLshort src_y,
144 src_buffer, src_pitch, src_offset, src_x, src_y,
207 OUT_BATCH((src_y << 16) | src_x);
91 intelEmitCopyBlit(struct intel_context *intel, GLuint cpp, GLshort src_pitch, drm_intel_bo *src_buffer, GLuint src_offset, uint32_t src_tiling, GLshort dst_pitch, drm_intel_bo *dst_buffer, GLuint dst_offset, uint32_t dst_tiling, GLshort src_x, GLshort src_y, GLshort dst_x, GLshort dst_y, GLshort w, GLshort h, GLenum logic_op) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_blit.c101 GLshort src_x, GLshort src_y,
144 src_buffer, src_pitch, src_offset, src_x, src_y,
207 OUT_BATCH((src_y << 16) | src_x);
91 intelEmitCopyBlit(struct intel_context *intel, GLuint cpp, GLshort src_pitch, drm_intel_bo *src_buffer, GLuint src_offset, uint32_t src_tiling, GLshort dst_pitch, drm_intel_bo *dst_buffer, GLuint dst_offset, uint32_t dst_tiling, GLshort src_x, GLshort src_y, GLshort dst_x, GLshort dst_y, GLshort w, GLshort h, GLenum logic_op) argument
/external/libyuv/files/source/
H A Drotate.cc1040 int I420Rotate(const uint8* src_y, int src_stride_y, argument
1048 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 ||
1059 src_y = src_y + (height - 1) * src_stride_y;
1070 return I420Copy(src_y, src_stride_y,
1078 RotatePlane90(src_y, src_stride_y,
1089 RotatePlane270(src_y, src_stride_y,
1100 RotatePlane180(src_y, src_stride_y,
1117 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y, argument
1124 if (!src_y || !src_u
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format.c537 unsigned src_x, unsigned src_y,
558 src_x, src_y);
565 assert(src_y % src_format_desc->block.height == 0);
568 src_row = (const uint8_t *)src + src_y*src_stride + src_x*(src_format_desc->block.bits/8);
532 util_format_translate(enum pipe_format dst_format, void *dst, unsigned dst_stride, unsigned dst_x, unsigned dst_y, enum pipe_format src_format, const void *src, unsigned src_stride, unsigned src_x, unsigned src_y, unsigned width, unsigned height) argument
/external/mesa3d/src/gallium/state_trackers/xvmc/
H A Dsubpicture.c172 unsigned src_x, unsigned src_y)
185 src, src_stride, src_x, src_y);
170 upload_sampler(struct pipe_context *pipe, struct pipe_sampler_view *dst, const struct pipe_box *dst_box, const void *src, unsigned src_stride, unsigned src_x, unsigned src_y) argument
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_blit.c101 GLshort src_x, GLshort src_y,
144 src_buffer, src_pitch, src_offset, src_x, src_y,
207 OUT_BATCH((src_y << 16) | src_x);
91 intelEmitCopyBlit(struct intel_context *intel, GLuint cpp, GLshort src_pitch, drm_intel_bo *src_buffer, GLuint src_offset, uint32_t src_tiling, GLshort dst_pitch, drm_intel_bo *dst_buffer, GLuint dst_offset, uint32_t dst_tiling, GLshort src_x, GLshort src_y, GLshort dst_x, GLshort dst_y, GLshort w, GLshort h, GLenum logic_op) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_blit.c101 GLshort src_x, GLshort src_y,
144 src_buffer, src_pitch, src_offset, src_x, src_y,
207 OUT_BATCH((src_y << 16) | src_x);
91 intelEmitCopyBlit(struct intel_context *intel, GLuint cpp, GLshort src_pitch, drm_intel_bo *src_buffer, GLuint src_offset, uint32_t src_tiling, GLshort dst_pitch, drm_intel_bo *dst_buffer, GLuint dst_offset, uint32_t dst_tiling, GLshort src_x, GLshort src_y, GLshort dst_x, GLshort dst_y, GLshort w, GLshort h, GLenum logic_op) argument
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_blit.c101 GLshort src_x, GLshort src_y,
144 src_buffer, src_pitch, src_offset, src_x, src_y,
207 OUT_BATCH((src_y << 16) | src_x);
91 intelEmitCopyBlit(struct intel_context *intel, GLuint cpp, GLshort src_pitch, drm_intel_bo *src_buffer, GLuint src_offset, uint32_t src_tiling, GLshort dst_pitch, drm_intel_bo *dst_buffer, GLuint dst_offset, uint32_t dst_tiling, GLshort src_x, GLshort src_y, GLshort dst_x, GLshort dst_y, GLshort w, GLshort h, GLenum logic_op) argument
/external/pixman/pixman/
H A Dpixman-implementation.c241 int src_y,
251 src_bpp, dst_bpp, src_x, src_y, dest_x, dest_y,
233 _pixman_implementation_blt(pixman_implementation_t * imp, uint32_t * src_bits, uint32_t * dst_bits, int src_stride, int dst_stride, int src_bpp, int dst_bpp, int src_x, int src_y, int dest_x, int dest_y, int width, int height) argument
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/
H A DXv.c1008 int src_y,
1033 req->src_y = src_y;
1065 int src_y,
1092 req->src_y = src_y;
1001 XvPutImage( Display *dpy, XvPortID port, Drawable d, GC gc, SDL_NAME(XvImage) *image, int src_x, int src_y, unsigned int src_w, unsigned int src_h, int dest_x, int dest_y, unsigned int dest_w, unsigned int dest_h ) argument
1058 XvShmPutImage( Display *dpy, XvPortID port, Drawable d, GC gc, SDL_NAME(XvImage) *image, int src_x, int src_y, unsigned int src_w, unsigned int src_h, int dest_x, int dest_y, unsigned int dest_w, unsigned int dest_h, Bool send_event ) argument

Completed in 505 milliseconds

123456