Searched defs:dstX (Results 1 - 25 of 34) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A Dcopy-assign-synthesis.cpp70 X dstX; variable
74 dstY = dstX = srcX;
76 dstX.pr();
H A Dcopy-assign-synthesis-1.cpp85 X dstX; variable
89 dstY = dstX = srcX;
91 dstX.pr();
/external/libgdx/gdx/jni/
H A Dcom.badlogic.gdx.graphics.g2d.Gdx2DPixmap.cpp150 JNIEXPORT void JNICALL Java_com_badlogic_gdx_graphics_g2d_Gdx2DPixmap_drawPixmap(JNIEnv* env, jclass clazz, jlong src, jlong dst, jint srcX, jint srcY, jint srcWidth, jint srcHeight, jint dstX, jint dstY, jint dstWidth, jint dstHeight) { argument
155 gdx2d_draw_pixmap((gdx2d_pixmap*)src, (gdx2d_pixmap*)dst, srcX, srcY, srcWidth, srcHeight, dstX, dstY, dstWidth, dstHeight);
/external/mesa3d/src/mesa/swrast/
H A Ds_copypix.c446 GLint dstX, GLint dstY, GLenum type)
498 dstX < dstFb->_Xmin || dstX + width > dstFb->_Xmax ||
524 dstMap = map + dstY * rowStride + dstX * pixelBytes;
549 ctx->Driver.MapRenderbuffer(ctx, dstRb, dstX, dstY,
444 swrast_fast_copy_pixels(struct gl_context *ctx, GLint srcX, GLint srcY, GLsizei width, GLsizei height, GLint dstX, GLint dstY, GLenum type) argument
/external/skia/src/codec/
H A DSkBmpRLECodec.cpp209 const int dstX = get_dst_coord(x, fSampleX); local
213 dstRow[dstX] = fColorTable->operator[](index);
218 dstRow[dstX] = SkPixel32ToPixel16(fColorTable->operator[](index));
242 const int dstX = get_dst_coord(x, fSampleX); local
246 dstRow[dstX] = SkPackARGB32NoCheck(0xFF, red, green, blue);
251 dstRow[dstX] = SkPack888ToRGB16(red, green, blue);
/external/skia/src/utils/
H A DSkNinePatch.cpp263 SkScalar dstX[4] = { local
272 if (dstX[1] > dstX[2]) {
273 dstX[1] = dstX[0] + (dstX[3] - dstX[0]) * SkIntToScalar(margins.fLeft) /
275 dstX[2] = dstX[1];
294 d.fLeft = dstX[
[all...]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
H A DGdx2DPixmap.java197 public void drawPixmap (Gdx2DPixmap src, int srcX, int srcY, int dstX, int dstY, int width, int height) { argument
198 drawPixmap(src.basePtr, basePtr, srcX, srcY, width, height, dstX, dstY, width, height);
201 public void drawPixmap (Gdx2DPixmap src, int srcX, int srcY, int srcWidth, int srcHeight, int dstX, int dstY, int dstWidth, argument
203 drawPixmap(src.basePtr, basePtr, srcX, srcY, srcWidth, srcHeight, dstX, dstY, dstWidth, dstHeight);
350 private static native void drawPixmap (long src, long dst, int srcX, int srcY, int srcWidth, int srcHeight, int dstX, argument
352 gdx2d_draw_pixmap((gdx2d_pixmap*)src, (gdx2d_pixmap*)dst, srcX, srcY, srcWidth, srcHeight, dstX, dstY, dstWidth, dstHeight);
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_composite.c505 int dstX, int dstY, int width, int height)
508 renderer_solid(ctx, dstX, dstY, dstX + width, dstY + height,
512 int pos[6] = {srcX, srcY, maskX, maskY, dstX, dstY};
503 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.c187 float srcX, float srcY, float dstX, float dstY,
220 add_vertex_1tex(r, dstX, dstY, s0, t0);
222 add_vertex_1tex(r, dstX + width, dstY, s1, t1);
224 add_vertex_1tex(r, dstX + width, dstY + height, s2, t2);
226 add_vertex_1tex(r, dstX, dstY + height, s3, t3);
232 float dstX, float dstY, float width, float height,
273 add_vertex_2tex(r, dstX, dstY,
276 add_vertex_2tex(r, dstX + width, dstY,
279 add_vertex_2tex(r, dstX + width, dstY + height,
282 add_vertex_2tex(r, dstX, dst
186 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
230 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
287 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/skia/src/pdf/
H A DSkPDFUtils.cpp79 SkScalar dstX, SkScalar dstY, SkWStream* content) {
85 if (ctl2X != dstX || ctl2Y != dstY) {
92 SkPDFUtils::AppendScalar(dstX, content);
77 AppendCubic(SkScalar ctl1X, SkScalar ctl1Y, SkScalar ctl2X, SkScalar ctl2Y, SkScalar dstX, SkScalar dstY, SkWStream* content) argument
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/
H A DPixmap.java472 private void image (CanvasElement image, int srcX, int srcY, int srcWidth, int srcHeight, int dstX, int dstY, int dstWidth, int dstHeight) { argument
478 context.rect(dstX, dstY, dstWidth, dstHeight);
485 context.drawImage(image, srcX, srcY, srcWidth, srcHeight, dstX, dstY, dstWidth, dstHeight);
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_composite.c506 int dstX, int dstY, int width, int height)
510 dstX, dstY, dstX + width, dstY + height,
513 int pos[6] = {srcX, srcY, maskX, maskY, dstX, dstY};
503 xorg_composite(struct exa_context *exa, struct exa_pixmap_priv *dst, int srcX, int srcY, int maskX, int maskY, int dstX, int dstY, int width, int height) argument
H A Dxorg_exa.c469 ExaCopy(PixmapPtr pDstPixmap, int srcX, int srcY, int dstX, int dstY, argument
477 exa_debug_printf("\tExaCopy(srcx=%d, srcy=%d, dstX=%d, dstY=%d, w=%d, h=%d)\n",
478 srcX, srcY, dstX, dstY, width, height);
488 !((dstX + width) < srcX || dstX > (srcX + width) ||
512 dstX, dstY, 0,
519 dstX, dstY, 0,
687 int dstX, int dstY, int width, int height)
695 srcX, srcY, maskX, maskY, dstX, dstY, width, height);
700 dstX, dst
686 ExaComposite(PixmapPtr pDst, int srcX, int srcY, int maskX, int maskY, int dstX, int dstY, int width, int height) argument
[all...]
H A Dxorg_renderer.c140 float srcX, float srcY, float dstX, float dstY,
173 add_vertex_1tex(r, dstX, dstY, s0, t0);
175 add_vertex_1tex(r, dstX + width, dstY, s1, t1);
177 add_vertex_1tex(r, dstX + width, dstY + height, s2, t2);
179 add_vertex_1tex(r, dstX, dstY + height, s3, t3);
211 float dstX, float dstY, float width, float height,
272 add_vertex_2tex(r, dstX, dstY,
275 add_vertex_2tex(r, dstX + width, dstY,
278 add_vertex_2tex(r, dstX + width, dstY + height,
281 add_vertex_2tex(r, dstX, dst
139 add_vertex_data1(struct xorg_renderer *r, float srcX, float srcY, float dstX, float dstY, float width, float height, struct pipe_resource *src, float *src_matrix) argument
209 add_vertex_data2(struct xorg_renderer *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, float *src_matrix, float *mask_matrix) argument
286 setup_vertex_data_yuv(struct xorg_renderer *r, float srcX, float srcY, float srcW, float srcH, float dstX, float dstY, float dstW, float dstH, struct pipe_resource **tex) argument
[all...]
H A Dxorg_xv.c494 int dstX, int dstY, int dst_w, int dst_h,
510 src_x, src_y, src_w, src_h, dstX, dstY, dst_w, dst_h);*/
551 float offset_x = box_x1 - dstX;
491 display_video(ScrnInfoPtr pScrn, struct xorg_xv_port_priv *pPriv, int id, RegionPtr dstRegion, int src_x, int src_y, int src_w, int src_h, int dstX, int dstY, int dst_w, int dst_h, PixmapPtr pPixmap) argument
/external/mesa3d/src/mesa/drivers/x11/
H A Dxm_dd.c349 int dstX = x; local
379 if (_mesa_clip_drawpixels(ctx, &dstX, &dstY, &w, &h, &clippedUnpack)) {
416 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h);
483 int dstX = x; local
513 if (_mesa_clip_drawpixels(ctx, &dstX, &dstY, &w, &h, &clippedUnpack)) {
549 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h);
/external/skia/src/effects/gradients/
H A DSkRadialGradient.cpp226 SkScalar dstX = SkIntToScalar(x); local
229 dstProc(fDstToIndex, dstX, dstY, &srcPt);
233 dstX += SK_Scalar1;
H A DSkTwoPointConicalGradient.cpp276 SkScalar dstX = SkIntToScalar(x) + SK_ScalarHalf; local
280 dstProc(fDstToIndex, dstX, dstY, &srcPt);
284 dstX += SK_Scalar1;
H A DSkLinearGradient.cpp333 SkScalar dstX = SkIntToScalar(x); local
336 dstProc(fDstToIndex, dstX, dstY, &srcPt);
341 dstX += SK_Scalar1;
/external/mesa3d/src/mesa/main/
H A Dteximage.c3414 GLint srcX = x, srcY = y, dstX = 0, dstY = 0, dstZ = 0; local
3427 if (_mesa_clip_copytexsubimage(ctx, &dstX, &dstY, &srcX, &srcY,
3432 ctx->Driver.CopyTexSubImage(ctx, dims, texImage, dstX, dstY, dstZ,
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c1309 regions_overlap(GLint srcX, GLint srcY, GLint dstX, GLint dstY, argument
1312 if (srcX + width <= dstX ||
1313 dstX + width <= srcX ||
/external/opencv/cv/src/
H A Dcvlkpyramid.cpp226 icvCalcIxIy_32f( const float* src, int src_step, float* dstX, float* dstY, int dst_step, argument
234 dst_step /= sizeof(dstX[0]);
236 for( ; height--; src += src_step, dstX += dst_step, dstY += dst_step )
252 dstX[x] = t0; dstY[x] = t1;
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga_reg.h807 int32 dstX; member in struct:SVGAOverlayUnit
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c2103 GLint dstX, GLint dstY, GLenum type)
2120 _swrast_CopyPixels(ctx, srcX, srcY, width, height, dstX, dstY, type);
2163 const GLfloat dstX0 = (GLfloat) dstX;
2165 const GLfloat dstX1 = dstX + width * ctx->Pixel.ZoomX;
2101 _mesa_meta_CopyPixels(struct gl_context *ctx, GLint srcX, GLint srcY, GLsizei width, GLsizei height, GLint dstX, GLint dstY, GLenum type) argument
/external/libgdx/backends/gdx-backend-lwjgl3/libs/
H A Dlwjgl.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/lwjgl/ org/lwjgl/egl/ org/lwjgl/glfw/ org/ ...

Completed in 556 milliseconds

12