Searched refs:srcX (Results 1 - 15 of 15) sorted by relevance

/external/skia/src/core/
H A DSkSpriteBlitterTemplate.h28 int srcX = x - fLeft; local
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/
H A Dcopy-assign-synthesis.cpp69 X srcX; variable
74 dstY = dstX = srcX;
75 srcX.pr();
H A Dcopy-assign-synthesis-1.cpp85 X srcX; variable
90 dstY = dstX = srcX;
91 srcX.pr();
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/mac/
H A DConvertPoint.cpp46 double srcX, srcY; local
47 if (!NPN_ConvertPoint(destX, destY, destSpace, &srcX, &srcY, sourceSpace))
52 if (srcX != x || srcY != y)
/external/webkit/Source/WebCore/platform/gtk/
H A DGtkVersioning.c148 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, local
257 srcX, srcY, local
146 convert_alpha(guchar * destData, int destStride, guchar * srcData, int srcStride, int srcX, int srcY, int width, int height) argument
178 convert_no_alpha(guchar * destData, int destStride, guchar * srcData, int srcStride, int srcX, int srcY, int width, int height) argument
220 gdk_pixbuf_get_from_surface(cairo_surface_t * surface, int srcX, int srcY, int width, int height) argument
H A DGtkVersioning.h36 GdkPixbuf* gdk_pixbuf_get_from_surface(cairo_surface_t* surface, int srcX, int srcY,
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
H A DSDL_fb3dfx.c102 int srcX, srcY; local
123 srcX = srcrect->x;
130 if ( srcX <= dstX ) {
132 srcX += (dstrect->w - 1);
160 tdfx_out32(LAUNCH_2D, srcX | (srcY << 16));
H A DSDL_fbriva.c115 int srcX, srcY; local
136 FB_dst_to_xy(this, src, &srcX, &srcY);
140 srcX += srcrect->x;
146 Blt->TopLeftSrc = (srcY << 16) | srcX;
H A DSDL_fbmatrox.c125 int srcX, srcY; local
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 ) {
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEDisplacementMap.cpp128 int srcX = x + static_cast<int>(scaleX * srcPixelArrayB->get(dstIndex + m_xChannelSelector - 1) + scaleAdjustmentX); local
131 if (srcX < 0 || srcX >= paintSize.width() || srcY < 0 || srcY >= paintSize.height())
134 unsigned char pixelValue = srcPixelArrayA->get(srcY * stride + srcX * 4 + channel);
/external/skia/src/images/
H A DSkImageDecoder.cpp208 int width, int height, int srcX, int srcY) {
212 (srcX - destX) / sampleSize == 0 && (srcY - destY) / sampleSize == 0) {
222 canvas.drawBitmap(*src, (srcX - destX) / sampleSize,
206 cropBitmap(SkBitmap *dest, SkBitmap *src, int sampleSize, int destX, int destY, int width, int height, int srcX, int srcY) argument
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DTexture.cpp123 static uint32_t* copySubRect(uint32_t* src, int srcX, int srcY, uint32_t* dst, int width, int height, int srcStride) argument
125 uint32_t* srcOffset = src + srcX + srcY * srcStride;
/external/skia/src/utils/
H A DSkNinePatch.cpp256 const int32_t srcX[4] = { local
291 s.fLeft = srcX[x];
292 s.fRight = srcX[x+1];
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp399 int srcX = x1 * cosA + transform.m_postShiftX; local
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; local
416 if (srcX >= 0 && srcX <= sourceW && srcY >= 0 && srcY <= sourceH)
417 *dest++ = source[srcY * paddedSourceW + srcX];
426 int srcX, srcY; local
427 transform.map(x, y, &srcX,
[all...]
/external/skia/include/images/
H A DSkImageDecoder.h343 * @param (srcX, srcY) the upper-left point of the src Btimap in terms of
351 int srcX, int srcY);

Completed in 281 milliseconds