HomeSort by relevance Sort by last modified time
    Searched defs:srcX (Results 1 - 25 of 34) sorted by null

1 2

  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fb3dfx.c 101 int srcX, srcY;
121 srcX = srcrect->x;
128 if ( srcX <= dstX ) {
130 srcX += (dstrect->w - 1);
158 tdfx_out32(LAUNCH_2D, srcX | (srcY << 16));
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_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;
  /frameworks/av/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/chromium_org/third_party/skia/src/core/
SkSpriteBlitterTemplate.h 20 int srcX = x - fLeft;
24 fSource->SkSPRITE_SRC_GETADDR(srcX, srcY);
29 SkDEBUGCODE((void)fSource->SkSPRITE_SRC_GETADDR(srcX + width - 1, srcY + height - 1);)
31 SkSPRITE_PREAMBLE((*fSource), srcX, srcY);
SkCanvas.cpp     [all...]
  /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();
  /external/skia/src/core/
SkSpriteBlitterTemplate.h 20 int srcX = x - fLeft;
24 fSource->SkSPRITE_SRC_GETADDR(srcX, srcY);
29 SkDEBUGCODE((void)fSource->SkSPRITE_SRC_GETADDR(srcX + width - 1, srcY + height - 1);)
31 SkSPRITE_PREAMBLE((*fSource), srcX, srcY);
SkCanvas.cpp     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
BitmapUtil.java 150 int srcX, srcY;
154 srcX = (int) (srcWidth * horizontalCenterPercent - srcCroppedW / 2);
157 // Nudge srcX and srcY to be within the bounds of src
158 srcX = Math.max(Math.min(srcX, srcWidth - srcCroppedW), 0);
161 final Bitmap cropped = Bitmap.createBitmap(src, srcX, srcY, srcCroppedW, srcCroppedH, m,
165 "IN centerCrop, srcW/H=%s/%s desiredW/H=%s/%s srcX/Y=%s/%s" +
167 srcWidth, srcHeight, w, h, srcX, srcY, srcCroppedW, srcCroppedH, scale,
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEDisplacementMap.cpp 145 int srcX = x + static_cast<int>(scaleForColorX * srcPixelArrayB->item(dstIndex + m_xChannelSelector - 1) + scaledOffsetX);
148 if (srcX < 0 || srcX >= paintSize.width() || srcY < 0 || srcY >= paintSize.height())
151 unsigned char pixelValue = srcPixelArrayA->item(srcY * stride + srcX * 4 + channel);
  /external/chromium_org/third_party/skia/src/utils/
SkNinePatch.cpp 257 const int32_t srcX[4] = {
292 s.fLeft = srcX[x];
293 s.fRight = srcX[x+1];
  /external/skia/src/utils/
SkNinePatch.cpp 257 const int32_t srcX[4] = {
292 s.fLeft = srcX[x];
293 s.fRight = srcX[x+1];
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xm_dd.c 386 const int srcX = clippedUnpack.SkipPixels;
405 + ((srcY + h - 1) * rowLength + srcX) * 4;
520 const int srcX = clippedUnpack.SkipPixels;
538 + ((srcY + h - 1) * rowLength + srcX) * 2;
608 GLint srcx, GLint srcy, GLsizei width, GLsizei height,
630 srcx, srcy, width, height, destx, desty);
633 _swrast_CopyPixels(ctx, srcx, srcy, width, height, destx, desty, type );
  /external/mesa3d/src/mesa/drivers/x11/
xm_dd.c 386 const int srcX = clippedUnpack.SkipPixels;
405 + ((srcY + h - 1) * rowLength + srcX) * 4;
520 const int srcX = clippedUnpack.SkipPixels;
538 + ((srcY + h - 1) * rowLength + srcX) * 2;
608 GLint srcx, GLint srcy, GLsizei width, GLsizei height,
630 srcx, srcy, width, height, destx, desty);
633 _swrast_CopyPixels(ctx, srcx, srcy, width, height, destx, desty, type );
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageOverlay.java 280 int srcX = 0;
290 srcX, srcY, srcWidth, srcHeight,
  /external/chromium_org/third_party/skia/src/effects/
SkDisplacementMapEffect.cpp 69 const int srcX = x + SkScalarTruncToInt(displX);
71 *dstPtr = ((srcX < 0) || (srcX >= srcW) || (srcY < 0) || (srcY >= srcH)) ?
72 0 : *(src->getAddr32(srcX, srcY));
  /external/skia/src/effects/
SkDisplacementMapEffect.cpp 69 const int srcX = x + SkScalarTruncToInt(displX);
71 *dstPtr = ((srcX < 0) || (srcX >= srcW) || (srcY < 0) || (srcY >= srcH)) ?
72 0 : *(src->getAddr32(srcX, srcY));
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
teximage.c     [all...]
  /external/mesa3d/src/mesa/main/
teximage.c     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
svga_reg.h 790 * srcX, srcY, srcWidth and srcHeight represent subset of the source
803 uint32 srcX;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
meta.c     [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_reg.h 790 * srcX, srcY, srcWidth and srcHeight represent subset of the source
803 uint32 srcX;
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c     [all...]

Completed in 2143 milliseconds

1 2