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

1 2

  /external/skia/src/core/
SkSpriteBlitterTemplate.h 28 int srcX = x - fLeft;
32 fSource->SkSPRITE_SRC_GETADDR(srcX, srcY);
37 SkDEBUGCODE((void)fSource->SkSPRITE_SRC_GETADDR(srcX + width - 1, srcY + height - 1);)
39 SkSPRITE_PREAMBLE((*fSource), srcX, srcY);
  /external/clang/test/CodeGenCXX/
copy-assign-synthesis.cpp 69 X srcX;
74 dstY = dstX = srcX;
75 srcX.pr();
copy-assign-synthesis-1.cpp 85 X srcX;
90 dstY = dstX = srcX;
91 srcX.pr();
  /frameworks/base/media/libstagefright/yuv/
YUVCanvas.cpp 68 int32_t srcX = srcStartX + offsetX;
78 srcImage.getPixelValue(srcX, srcY, &yValue, &uValue, &vValue);
100 int32_t srcX = srcOffsetX;
102 srcImage.getPixelValue(srcX, srcY, &yValue, &uValue, &vValue);
105 srcX += skipX;
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/mac/
ConvertPoint.cpp 46 double srcX, srcY;
47 if (!NPN_ConvertPoint(destX, destY, destSpace, &srcX, &srcY, sourceSpace))
52 if (srcX != x || srcY != y)
  /external/webkit/Source/WebCore/platform/gtk/
GtkVersioning.c 148 int srcX, int srcY, int width, int height)
179 int srcStride, int srcX, int srcY,
184 srcData += srcStride * srcY + srcX * 4;
221 int srcX, int srcY,
229 g_return_val_if_fail(srcX >= 0 && srcY >= 0, NULL);
238 surface = gdk_cairo_surface_coerce_to_image(surface, content, srcX + width, srcY + height);
250 srcX, srcY,
257 srcX, srcY,
GtkVersioning.h 36 GdkPixbuf* gdk_pixbuf_get_from_surface(cairo_surface_t* surface, int srcX, int srcY,
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbmatrox.c 125 int srcX, srcY;
148 FB_dst_to_xy(this, src, &srcX, &srcY);
152 srcX += srcrect->x;
160 if ( srcX < dstX ) {
170 stop = start = (srcY * pitch) + srcX;
171 if ( srcX < dstX ) {
SDL_fb3dfx.c 102 int srcX, srcY;
123 srcX = srcrect->x;
130 if ( srcX <= dstX ) {
132 srcX += (dstrect->w - 1);
160 tdfx_out32(LAUNCH_2D, srcX | (srcY << 16));
SDL_fbriva.c 115 int srcX, srcY;
136 FB_dst_to_xy(this, src, &srcX, &srcY);
140 srcX += srcrect->x;
146 Blt->TopLeftSrc = (srcY << 16) | srcX;
  /external/qemu/distrib/sdl-1.2.12/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/webkit/Source/WebCore/platform/graphics/filters/
FEDisplacementMap.cpp 128 int srcX = x + static_cast<int>(scaleX * srcPixelArrayB->get(dstIndex + m_xChannelSelector - 1) + scaleAdjustmentX);
131 if (srcX < 0 || srcX >= paintSize.width() || srcY < 0 || srcY >= paintSize.height())
134 unsigned char pixelValue = srcPixelArrayA->get(srcY * stride + srcX * 4 + channel);
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
xf86dga.h 216 int srcx,
228 int srcx,
xf86dgastr.h 201 CARD16 srcx B16;
215 CARD16 srcx B16;
  /external/quake/quake/src/QW/client/
draw.h 29 void Draw_SubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height);
  /system/extras/tests/framebuffer/
mdp_test.c 180 int srcx = 0; int srcy = 0; local
198 if (parse_geometry(optarg, &srcw, &srch, &srcx, &srcy)) {
202 printf("Got source: w=%d h=%d x=%d y=%d\n", srcw, srch, srcx, srcy);
300 req->src_rect.x = srcx;
  /external/skia/src/images/
SkImageDecoder.cpp 208 int width, int height, int srcX, int srcY) {
212 (srcX - destX) / sampleSize == 0 && (srcY - destY) / sampleSize == 0) {
222 canvas.drawBitmap(*src, (srcX - destX) / sampleSize,
  /external/skia/src/utils/
SkNinePatch.cpp 256 const int32_t srcX[4] = {
291 s.fLeft = srcX[x];
292 s.fRight = srcX[x+1];
  /external/webkit/Source/WebCore/platform/graphics/gpu/
Texture.cpp 123 static uint32_t* copySubRect(uint32_t* src, int srcX, int srcY, uint32_t* dst, int width, int height, int srcStride)
125 uint32_t* srcOffset = src + srcX + srcY * srcStride;
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/
XF86DGA2.c 538 int srcx,
555 req->srcx = srcx;
568 int srcx,
586 req->srcx = srcx;
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 399 int srcX = x1 * cosA + transform.m_postShiftX;
401 if (srcX >= 0 && srcX <= sourceW && srcY >= 0 && srcY <= sourceH)
402 *dest++ = source[srcY * paddedSourceW + srcX] | 0xFF000000;
414 int srcX = y1 * sinA + transform.m_postShiftX;
416 if (srcX >= 0 && srcX <= sourceW && srcY >= 0 && srcY <= sourceH)
417 *dest++ = source[srcY * paddedSourceW + srcX];
426 int srcX, srcY;
427 transform.map(x, y, &srcX, &srcY)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgavideo.c 864 int srcx, srcy; local
876 DGA_dst_to_xy(this, src, &srcx, &srcy);
877 srcx += srcrect->x;
885 printf("Blitting %dx%d from %d,%d to %d,%d\n", w, h, srcx, srcy, dstx, dsty);
889 srcx, srcy, w, h, dstx, dsty, src->format->colorkey);
892 srcx, srcy, w, h, dstx, dsty);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
shmstr.h 130 CARD16 srcX B16;
  /external/skia/include/images/
SkImageDecoder.h 343 * @param (srcX, srcY) the upper-left point of the src Btimap in terms of
351 int srcX, int srcY);

Completed in 827 milliseconds

1 2