Searched defs:dstY (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A Dcopy-assign-synthesis.cpp71 X dstY; variable
74 dstY = dstX = srcX;
77 dstY.pr();
H A Dcopy-assign-synthesis-1.cpp86 X dstY; variable
89 dstY = dstX = srcX;
92 dstY.pr();
/external/deqp/framework/delibs/deimage/
H A DdeTarga.c85 int dstY = yFlipped ? (height-1 - y) : y; local
86 deARGB* dst = (deUint32*)((deUint8*)image->pixels + dstY*image->width*bpp);
/external/mesa3d/src/mesa/swrast/
H A Ds_copypix.c437 GLint dstX, GLint dstY, GLenum type)
488 dstY < dstFb->_Ymin || dstY + height > dstFb->_Ymax) {
513 dstMap = map + dstY * rowStride + dstX * pixelBytes;
516 if (srcY < dstY) {
538 ctx->Driver.MapRenderbuffer(ctx, dstRb, dstX, dstY,
433 swrast_fast_copy_pixels(struct gl_context *ctx, struct gl_framebuffer *srcFb, struct gl_framebuffer *dstFb, GLint srcX, GLint srcY, GLsizei width, GLsizei height, GLint dstX, GLint dstY, GLenum type) argument
H A Ds_blit.c626 const GLint dstY = dstYpos + dstRow; local
701 GLubyte *dst = dstMap + dstY * dstRowStride + dstXpos * bpp;
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_composite.c511 int dstX, int dstY, int width, int height)
514 renderer_solid(ctx, dstX, dstY, dstX + width, dstY + height,
518 int pos[6] = {srcX, srcY, maskX, maskY, dstX, dstY};
522 xa_scissor_update(ctx, dstX, dstY, dstX + width, dstY + height);
509 xa_composite_rect(struct xa_context *ctx, int srcX, int srcY, int maskX, int maskY, int dstX, int dstY, int width, int height) argument
H A Dxa_renderer.c200 float srcX, float srcY, float dstX, float dstY,
233 add_vertex_1tex(r, dstX, dstY, s0, t0);
235 add_vertex_1tex(r, dstX + width, dstY, s1, t1);
237 add_vertex_1tex(r, dstX + width, dstY + height, s2, t2);
239 add_vertex_1tex(r, dstX, dstY + height, s3, t3);
245 float dstX, float dstY, float width, float height,
286 add_vertex_2tex(r, dstX, dstY,
289 add_vertex_2tex(r, dstX + width, dstY,
292 add_vertex_2tex(r, dstX + width, dstY + height,
295 add_vertex_2tex(r, dstX, dstY
199 add_vertex_data1(struct xa_context *r, float srcX, float srcY, float dstX, float dstY, float width, float height, struct pipe_resource *src, const float *src_matrix) argument
243 add_vertex_data2(struct xa_context *r, float srcX, float srcY, float maskX, float maskY, float dstX, float dstY, float width, float height, struct pipe_resource *src, struct pipe_resource *mask, const float *src_matrix, const float *mask_matrix) argument
300 setup_vertex_data_yuv(struct xa_context *r, float srcX, float srcY, float srcW, float srcH, float dstX, float dstY, float dstW, float dstH, struct xa_surface *srf[]) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dcopyimage.c457 GLint dstX, GLint dstY, GLint dstZ,
478 dstX, dstY, dstZ,
530 if ((dstX % dst_bw != 0) || (dstY % dst_bh != 0)) {
560 dstX, dstY, dstZ, dstWidth, dstHeight, dstDepth,
610 dstX, dstY, newDstZ,
454 _mesa_CopyImageSubData(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) argument
H A Dteximage.c3721 GLint srcX = x, srcY = y, dstX = 0, dstY = 0, dstZ = 0; local
3733 if (_mesa_clip_copytexsubimage(ctx, &dstX, &dstY, &srcX, &srcY,
3739 dstX, dstY, dstZ,
/external/skia/include/core/
H A DSkBitmap.h1038 /** Copies a SkRect of pixels from src. Copy starts at (dstX, dstY), and does not exceed
1055 dstX and dstY may be negative to copy only top or left of source. Returns
1057 Returns false if abs(dstX) >= Bitmap width(), or if abs(dstY) >= Bitmap height().
1061 @param dstY row index whose absolute value is less than height()
1064 bool writePixels(const SkPixmap& src, int dstX, int dstY) { argument
1065 return this->writePixels(src, dstX, dstY, SkTransferFunctionBehavior::kRespect);
/external/skia/src/pdf/
H A DSkPDFUtils.cpp77 SkScalar dstX, SkScalar dstY, SkWStream* content) {
83 if (ctl2X != dstX || ctl2Y != dstY) {
92 SkPDFUtils::AppendScalar(dstY, content);
75 AppendCubic(SkScalar ctl1X, SkScalar ctl1Y, SkScalar ctl2X, SkScalar ctl2Y, SkScalar dstX, SkScalar dstY, SkWStream* content) argument
/external/skqp/include/core/
H A DSkBitmap.h1048 /** Copies a SkRect of pixels from src. Copy starts at (dstX, dstY), and does not exceed
1065 dstX and dstY may be negative to copy only top or left of source. Returns
1067 Returns false if abs(dstX) >= this->width(), or if abs(dstY) >= this->height().
1071 @param dstY row index whose absolute value is less than height()
1074 bool writePixels(const SkPixmap& src, int dstX, int dstY) { argument
1075 return this->writePixels(src, dstX, dstY, SkTransferFunctionBehavior::kRespect);
/external/skqp/src/pdf/
H A DSkPDFUtils.cpp77 SkScalar dstX, SkScalar dstY, SkWStream* content) {
83 if (ctl2X != dstX || ctl2Y != dstY) {
92 SkPDFUtils::AppendScalar(dstY, content);
75 AppendCubic(SkScalar ctl1X, SkScalar ctl1Y, SkScalar ctl2X, SkScalar ctl2Y, SkScalar dstX, SkScalar dstY, SkWStream* content) argument
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta_blit.c615 const GLint dstY = MIN2(dstY0, dstY1); local
808 _mesa_set_viewport(ctx, 0, dstX, dstY, dstW, dstH);
H A Dmeta.c1845 GLint dstX, GLint dstY, GLenum type)
1857 _swrast_CopyPixels(ctx, srcX, srcY, width, height, dstX, dstY, type);
1885 const GLfloat dstY0 = (GLfloat) dstY;
1887 const GLfloat dstY1 = dstY + height * ctx->Pixel.ZoomY;
1843 _mesa_meta_CopyPixels(struct gl_context *ctx, GLint srcX, GLint srcY, GLsizei width, GLsizei height, GLint dstX, GLint dstY, GLenum type) argument
/external/mesa3d/src/mesa/drivers/x11/
H A Dxm_dd.c350 int dstY = y; local
377 if (_mesa_clip_drawpixels(ctx, &dstX, &dstY, &w, &h, &clippedUnpack)) {
413 dstY = YFLIP(xrb, dstY) - h + 1;
414 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h);
482 int dstY = y; local
509 if (_mesa_clip_drawpixels(ctx, &dstX, &dstY, &w, &h, &clippedUnpack)) {
544 dstY = YFLIP(xrb, dstY) - h + 1;
545 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY,
[all...]
/external/skia/src/codec/
H A DSkWebpCodec.cpp453 int dstY = frameRect.y(); local
467 int minYOffset = SkTMin(dstY, subset.y());
469 dstY -= minYOffset;
505 dstY = scaleY * dstY;
589 config.output.u.RGBA.rgba = reinterpret_cast<uint8_t*>(webpDst.getAddr(dstX, dstY));
610 *rowsDecodedPtr = rowsDecoded + dstY;
621 dst = SkTAddOffset<void>(dst, dstBpp * dstX + rowBytes * dstY);
/external/skia/src/core/
H A DSkBitmap.cpp488 bool SkBitmap::writePixels(const SkPixmap& src, int dstX, int dstY, argument
494 SkWritePixelsRec rec(src.info(), src.addr(), src.rowBytes(), dstX, dstY);
/external/skqp/src/codec/
H A DSkWebpCodec.cpp453 int dstY = frameRect.y(); local
467 int minYOffset = SkTMin(dstY, subset.y());
469 dstY -= minYOffset;
505 dstY = scaleY * dstY;
589 config.output.u.RGBA.rgba = reinterpret_cast<uint8_t*>(webpDst.getAddr(dstX, dstY));
610 *rowsDecodedPtr = rowsDecoded + dstY;
621 dst = SkTAddOffset<void>(dst, dstBpp * dstX + rowBytes * dstY);
/external/skqp/src/core/
H A DSkBitmap.cpp488 bool SkBitmap::writePixels(const SkPixmap& src, int dstX, int dstY, argument
494 SkWritePixelsRec rec(src.info(), src.addr(), src.rowBytes(), dstX, dstY);
/external/opencv/cv/src/
H A Dcvlkpyramid.cpp226 icvCalcIxIy_32f( const float* src, int src_step, float* dstX, float* dstY, int dst_step, argument
236 for( ; height--; src += src_step, dstX += dst_step, dstY += dst_step )
252 dstX[x] = t0; dstY[x] = t1;
/external/skia/src/gpu/vk/
H A DGrVkGpu.cpp1675 int32_t dstY = dstPoint.fY; local
1681 dstY = dst->height() - dstPoint.fY - srcVkRect.height();
1689 copyRegion.dstOffset = { dstPoint.fX, dstY, 0 };
/external/skqp/src/gpu/vk/
H A DGrVkGpu.cpp508 int32_t dstY = dstPoint.fY; local
514 dstY = dst->height() - dstPoint.fY - srcVkRect.height();
521 resolveInfo.dstOffset = { dstPoint.fX, dstY, 0 };
1714 int32_t dstY = dstPoint.fY; local
1720 dstY = dst->height() - dstPoint.fY - srcVkRect.height();
1728 copyRegion.dstOffset = { dstPoint.fX, dstY, 0 };
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga_reg.h1141 int32 dstY; member in struct:SVGAOverlayUnit
/external/skia/src/gpu/gl/
H A DGrGLGpu.cpp4109 GrGLint dstY; local
4111 dstY = dst->height() - (dstPoint.fY + srcGLRect.fHeight);
4113 dstY = dstPoint.fY;
4116 dstPoint.fX, dstY,

Completed in 1054 milliseconds

12