/external/webkit/Source/WebCore/platform/gtk/ |
D | GtkVersioning.c | 148 int srcX, int srcY, int width, int height) in convert_alpha() argument 179 int srcStride, int srcX, int srcY, in convert_no_alpha() argument 184 srcData += srcStride * srcY + srcX * 4; in convert_no_alpha() 221 int srcX, int srcY, in gdk_pixbuf_get_from_surface() argument 229 g_return_val_if_fail(srcX >= 0 && srcY >= 0, NULL); in gdk_pixbuf_get_from_surface() 238 surface = gdk_cairo_surface_coerce_to_image(surface, content, srcX + width, srcY + height); in gdk_pixbuf_get_from_surface() 250 srcX, srcY, in gdk_pixbuf_get_from_surface() 257 srcX, srcY, in gdk_pixbuf_get_from_surface()
|
D | GtkVersioning.h | 36 GdkPixbuf* gdk_pixbuf_get_from_surface(cairo_surface_t* surface, int srcX, int srcY,
|
/external/skia/src/core/ |
D | SkSpriteBlitterTemplate.h | 20 int srcX = x - fLeft; in blitRect() local 24 fSource->SkSPRITE_SRC_GETADDR(srcX, srcY); in blitRect() 29 SkDEBUGCODE((void)fSource->SkSPRITE_SRC_GETADDR(srcX + width - 1, srcY + height - 1);) in blitRect() 31 SkSPRITE_PREAMBLE((*fSource), srcX, srcY); in blitRect()
|
D | SkCanvas.cpp | 1542 const int32_t srcX[4] = { 0, c.fLeft, c.fRight, w }; in internalDrawBitmapNine() local 1571 s.fLeft = srcX[x]; in internalDrawBitmapNine() 1572 s.fRight = srcX[x+1]; in internalDrawBitmapNine()
|
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/ |
D | SDL_fbmatrox.c | 125 int srcX, srcY; in HWAccelBlit() local 148 FB_dst_to_xy(this, src, &srcX, &srcY); in HWAccelBlit() 152 srcX += srcrect->x; in HWAccelBlit() 160 if ( srcX < dstX ) { in HWAccelBlit() 170 stop = start = (srcY * pitch) + srcX; in HWAccelBlit() 171 if ( srcX < dstX ) { in HWAccelBlit()
|
D | SDL_fb3dfx.c | 101 int srcX, srcY; in HWAccelBlit() local 121 srcX = srcrect->x; in HWAccelBlit() 128 if ( srcX <= dstX ) { in HWAccelBlit() 130 srcX += (dstrect->w - 1); in HWAccelBlit() 158 tdfx_out32(LAUNCH_2D, srcX | (srcY << 16)); in HWAccelBlit()
|
D | SDL_fbriva.c | 115 int srcX, srcY; in HWAccelBlit() local 136 FB_dst_to_xy(this, src, &srcX, &srcY); in HWAccelBlit() 140 srcX += srcrect->x; in HWAccelBlit() 146 Blt->TopLeftSrc = (srcY << 16) | srcX; in HWAccelBlit()
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/mac/ |
D | ConvertPoint.cpp | 46 double srcX, srcY; in testConvert() local 47 if (!NPN_ConvertPoint(destX, destY, destSpace, &srcX, &srcY, sourceSpace)) in testConvert() 52 if (srcX != x || srcY != y) in testConvert()
|
/external/clang/test/CodeGenCXX/ |
D | copy-assign-synthesis.cpp | 69 X srcX; variable 74 dstY = dstX = srcX; in main() 75 srcX.pr(); in main()
|
D | copy-assign-synthesis-1.cpp | 85 X srcX; variable 90 dstY = dstX = srcX; in main() 91 srcX.pr(); in main()
|
/external/webkit/Source/WebCore/platform/graphics/filters/ |
D | FEDisplacementMap.cpp | 128 …int srcX = x + static_cast<int>(scaleX * srcPixelArrayB->get(dstIndex + m_xChannelSelector - 1) + … in apply() local 131 if (srcX < 0 || srcX >= paintSize.width() || srcY < 0 || srcY >= paintSize.height()) in apply() 134 … unsigned char pixelValue = srcPixelArrayA->get(srcY * stride + srcX * 4 + channel); in apply()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
D | DrawUtils.java | 314 for (int srcX = 0; srcX < srcData.width; srcX++) { in rotateOptimized() 316 int destY = srcData.width - srcX - 1; in rotateOptimized() 318 int srcIndex = srcY * srcData.bytesPerLine + srcX * bytesPerPixel; in rotateOptimized()
|
/external/skia/src/utils/ |
D | SkNinePatch.cpp | 257 const int32_t srcX[4] = { in drawNineViaRects() local 292 s.fLeft = srcX[x]; in drawNineViaRects() 293 s.fRight = srcX[x+1]; in drawNineViaRects()
|
/external/skia/src/images/ |
D | SkImageDecoder.cpp | 195 int width, int height, int srcX, int srcY) { in cropBitmap() argument 219 canvas.drawSprite(*src, (srcX - destX) / sampleSize, in cropBitmap()
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
D | Texture.cpp | 123 static uint32_t* copySubRect(uint32_t* src, int srcX, int srcY, uint32_t* dst, int width, int heigh… in copySubRect() argument 125 uint32_t* srcOffset = src + srcX + srcY * srcStride; in copySubRect()
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
D | GraphicsContextWinCE.cpp | 399 int srcX = x1 * cosA + transform.m_postShiftX; in _rotateBitmap() local 401 if (srcX >= 0 && srcX <= sourceW && srcY >= 0 && srcY <= sourceH) in _rotateBitmap() 402 *dest++ = source[srcY * paddedSourceW + srcX] | 0xFF000000; in _rotateBitmap() 414 int srcX = y1 * sinA + transform.m_postShiftX; in _rotateBitmap() local 416 if (srcX >= 0 && srcX <= sourceW && srcY >= 0 && srcY <= sourceH) in _rotateBitmap() 417 *dest++ = source[srcY * paddedSourceW + srcX]; in _rotateBitmap() 426 int srcX, srcY; in _rotateBitmap() local 427 transform.map(x, y, &srcX, &srcY); in _rotateBitmap() 428 if (srcX >= 0 && srcX <= sourceW && srcY >= 0 && srcY <= sourceH) in _rotateBitmap() 429 *dest++ = source[srcY * paddedSourceW + srcX]; in _rotateBitmap()
|
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/ |
D | RenderDeviceJme.java | 256 int srcX, int srcY, int srcW, int srcH, in renderImage() argument 271 float startX = srcX / imageWidth; in renderImage()
|
/external/skia/include/images/ |
D | SkImageDecoder.h | 344 int srcX, int srcY);
|