HomeSort by relevance Sort by last modified time
    Searched refs:srcx (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/libvpx/libvpx/vp9/common/
vp9_extend.h 23 int srcy, int srcx,
vp9_extend.c 108 int srcy, int srcx,
112 const int el_y = srcx ? 0 : dst->border;
115 const int er_y = srcx + srcw != src->y_width ? 0 :
117 const int src_y_offset = srcy * src->y_stride + srcx;
118 const int dst_y_offset = srcy * dst->y_stride + srcx;
124 const int src_uv_offset = ((srcy * src->uv_stride) >> 1) + (srcx >> 1);
125 const int dst_uv_offset = ((srcy * dst->uv_stride) >> 1) + (srcx >> 1);
  /external/libvpx/libvpx/vp8/common/
extend.h 22 int srcy, int srcx,
extend.c 107 int srcy, int srcx,
114 int src_y_offset = srcy * src->y_stride + srcx;
115 int dst_y_offset = srcy * dst->y_stride + srcx;
116 int src_uv_offset = ((srcy * src->uv_stride) >> 1) + (srcx >> 1);
117 int dst_uv_offset = ((srcy * dst->uv_stride) >> 1) + (srcx >> 1);
122 if (srcx)
126 if (srcx + srcw != src->y_width)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 78 GLint srcx, GLint srcy,
164 srcx += dstx - orig_dstx;
168 orig_srcx = srcx;
172 &srcx, &srcy, &width, &height))
175 dstx += srcx - orig_srcx;
191 srcx += read_irb->draw_x;
198 read_irb->mt->region, 0, srcx, srcy,
216 GLint srcx, GLint srcy,
225 if (do_blit_copypixels(ctx, srcx, srcy, width, height, destx, desty, type))
229 _mesa_meta_CopyPixels(ctx, srcx, srcy, width, height, destx, desty, type)
    [all...]
intel_blit.h 49 GLshort srcx, GLshort srcy,
intel_pixel.h 57 GLint srcx, GLint srcy,
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 78 GLint srcx, GLint srcy,
164 srcx += dstx - orig_dstx;
168 orig_srcx = srcx;
172 &srcx, &srcy, &width, &height))
175 dstx += srcx - orig_srcx;
191 srcx += read_irb->draw_x;
198 read_irb->mt->region, 0, srcx, srcy,
216 GLint srcx, GLint srcy,
225 if (do_blit_copypixels(ctx, srcx, srcy, width, height, destx, desty, type))
229 _mesa_meta_CopyPixels(ctx, srcx, srcy, width, height, destx, desty, type)
    [all...]
intel_blit.h 49 GLshort srcx, GLshort srcy,
intel_pixel.h 57 GLint srcx, GLint srcy,
  /external/chromium_org/third_party/libva/va/
va_android.h 61 short srcx,
va_x11.h 53 short srcx,
va_tpi.h 58 short srcx,
va_backend_tpi.h 93 short srcx,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_blit.h 41 short srcx, short srcy,
  /external/mesa3d/src/gallium/drivers/i915/
i915_blit.h 41 short srcx, short srcy,
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_copypix.c 50 regions_overlap(GLint srcx, GLint srcy,
57 if (srcx >= dstx + width || (srcx + width <= dstx)) {
72 if (srcx > (dstx + ((zoomX > 0.0F) ? (width * zoomX + 1.0F) : 0.0F))) {
76 else if (srcx + width + 1.0F < dstx + ((zoomX > 0.0F) ? 0.0F : (width * zoomX))) {
99 copy_rgba_pixels(struct gl_context *ctx, GLint srcx, GLint srcy,
115 overlapping = regions_overlap(srcx, srcy, destx, desty, width, height,
151 width, srcx, sy + row, p );
175 width, srcx, sy, rgba );
243 copy_depth_pixels( struct gl_context *ctx, GLint srcx, GLint srcy
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_copypix.c 50 regions_overlap(GLint srcx, GLint srcy,
57 if (srcx >= dstx + width || (srcx + width <= dstx)) {
72 if (srcx > (dstx + ((zoomX > 0.0F) ? (width * zoomX + 1.0F) : 0.0F))) {
76 else if (srcx + width + 1.0F < dstx + ((zoomX > 0.0F) ? 0.0F : (width * zoomX))) {
99 copy_rgba_pixels(struct gl_context *ctx, GLint srcx, GLint srcy,
115 overlapping = regions_overlap(srcx, srcy, destx, desty, width, height,
151 width, srcx, sy + row, p );
175 width, srcx, sy, rgba );
243 copy_depth_pixels( struct gl_context *ctx, GLint srcx, GLint srcy
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_yuv.c 86 int srcx, srcy, srcw, srch; local
95 srcx = 0;
106 srcx -= (dstx * overlay->w) / dstrect->w;
130 src.x = srcx;
SDL_surface.c 448 int srcx, srcy, w, h; local
470 srcx = srcrect->x;
472 if(srcx < 0) {
473 w += srcx;
474 dstrect->x -= srcx;
475 srcx = 0;
477 maxw = src->w - srcx;
493 srcx = srcy = 0;
507 srcx += dx;
526 sr.x = srcx;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
xf86dga.h 216 int srcx,
228 int srcx,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/
va_surface.c 112 vlVaPutSurface(VADriverContextP ctx, VASurfaceID surface, void* draw, short srcx, short srcy,
  /external/mesa3d/src/gallium/state_trackers/va/
va_surface.c 112 vlVaPutSurface(VADriverContextP ctx, VASurfaceID surface, void* draw, short srcx, short srcy,
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
drawpix.c 193 _mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height,
202 srcx, srcy, width, height,
271 ctx->Driver.CopyPixels( ctx, srcx, srcy, width, height, destx, desty,
  /external/mesa3d/src/mesa/main/
drawpix.c 193 _mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height,
202 srcx, srcy, width, height,
271 ctx->Driver.CopyPixels( ctx, srcx, srcy, width, height, destx, desty,

Completed in 746 milliseconds

1 2 3