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

1 2

  /external/clang/test/CodeGenCXX/
copy-assign-synthesis.cpp 71 X dstY;
74 dstY = dstX = srcX;
77 dstY.pr();
copy-assign-synthesis-1.cpp 86 X dstY;
89 dstY = dstX = srcX;
92 dstY.pr();
  /external/deqp/framework/delibs/deimage/
deTarga.c 85 int dstY = yFlipped ? (height-1 - y) : y;
86 deARGB* dst = (deUint32*)((deUint8*)image->pixels + dstY*image->width*bpp);
  /hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
AnnCursorPlane.cpp 100 int dstY = mPosition.y;
158 if (dstY < 0) {
160 dstY = -dstY;
162 mContext.ctx.cs_ctx.pos |= (dstY & 0xfff) << 16 | (dstX & 0xfff);
AnnRGBPlane.cpp 92 int dstX, dstY, dstW, dstH;
103 dstY = mPosition.y;
107 checkPosition(dstX, dstY, dstW, dstH);
173 mContext.ctx.sp_ctx.pos = ((mode->vdisplay - dstY - dstH) & 0xfff) << 16 | ((mode->hdisplay - dstX - dstW) & 0xfff);
175 mContext.ctx.sp_ctx.pos = (dstY & 0xfff) << 16 | (dstX & 0xfff);
177 mContext.ctx.sp_ctx.pos = (dstY & 0xfff) << 16 | (dstX & 0xfff);
  /hardware/intel/img/hwcomposer/merrifield/ips/tangier/
TngCursorPlane.cpp 94 int dstY = mPosition.y;
176 if (dstY < 0) {
178 dstY = -dstY;
180 mContext.ctx.cs_ctx.pos |= (dstY & 0xfff) << 16 | (dstX & 0xfff);
TngSpritePlane.cpp 41 int dstX, dstY, dstW, dstH;
51 dstY = mPosition.y;
55 checkPosition(dstX, dstY, dstW, dstH);
100 mContext.ctx.sp_ctx.pos = (dstY & 0xfff) << 16 | (dstX & 0xfff);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
AnnCursorPlane.cpp 99 int dstY = mPosition.y;
179 if (dstY < 0) {
181 dstY = -dstY;
183 mContext.ctx.cs_ctx.pos |= (dstY & 0xfff) << 16 | (dstX & 0xfff);
AnnRGBPlane.cpp 151 int dstX, dstY, dstW, dstH;
162 dstY = mPosition.y;
166 checkPosition(dstX, dstY, dstW, dstH);
231 mContext.ctx.sp_ctx.pos = ((mode->vdisplay - dstY - dstH) & 0xfff) << 16 | ((mode->hdisplay - dstX - dstW) & 0xfff);
233 mContext.ctx.sp_ctx.pos = (dstY & 0xfff) << 16 | (dstX & 0xfff);
235 mContext.ctx.sp_ctx.pos = (dstY & 0xfff) << 16 | (dstX & 0xfff);
  /external/opencv3/modules/imgproc/src/
filterengine.hpp 173 int y = Fxx->start(src), dsty = 0, dy = 0;
193 // dsty is the current output row.
195 for( ; dsty < dst.rows; sptr += DELTA*src.step, dsty += dy )
201 Mat dstripe = dst.rowRange(dsty, dsty + dy);
273 int dstY;
  /external/skia/fuzz/
fuzz.cpp 201 int dstY = codec->outputScanline(y);
202 void* dstPtr = bitmap.getAddr(0, dstY);
  /external/skia/src/effects/gradients/
SkTwoPointConicalGradient.cpp 277 SkScalar dstY = SkIntToScalar(y) + SK_ScalarHalf;
280 dstProc(fDstToIndex, dstX, dstY, &srcPt);
SkRadialGradient.cpp 227 SkScalar dstY = SkIntToScalar(y);
229 dstProc(fDstToIndex, dstX, dstY, &srcPt);
SkLinearGradient.cpp 334 SkScalar dstY = SkIntToScalar(y);
336 dstProc(fDstToIndex, dstX, dstY, &srcPt);
  /external/skia/src/utils/
SkNinePatch.cpp 267 SkScalar dstY[4] = {
278 if (dstY[1] > dstY[2]) {
279 dstY[1] = dstY[0] + (dstY[3] - dstY[0]) * SkIntToScalar(margins.fTop) /
281 dstY[2] = dstY[1];
289 d.fTop = dstY[y]
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_dd.c 350 int dstY = y;
379 if (_mesa_clip_drawpixels(ctx, &dstX, &dstY, &w, &h, &clippedUnpack)) {
415 dstY = YFLIP(xrb, dstY) - h + 1;
416 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h);
484 int dstY = y;
513 if (_mesa_clip_drawpixels(ctx, &dstX, &dstY, &w, &h, &clippedUnpack)) {
548 dstY = YFLIP(xrb, dstY) - h + 1;
549 XPutImage(dpy, xrb->pixmap, gc, &ximage, 0, 0, dstX, dstY, w, h)
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_blit.c 608 const GLint dstY = dstYpos + dstRow;
686 GLubyte *dst = dstMap + dstY * dstRowStride + dstXpos * bpp;
  /external/skia/src/images/
SkScaledBitmapSampler.cpp 764 const int dstY = srcYMinusY0 / fDY;
765 if (dstY >= fScaledHeight) {
768 char* dstRow = fDstRow + dstY * fDstRowBytes;
770 fDX * fSrcPixelSize, dstY, fCTable);
  /frameworks/base/libs/hwui/font/
Font.cpp 209 int dstY = y + glyph->mBitmapTop;
223 for (uint32_t cacheY = startY, bitmapY = dstY * bitmapWidth; cacheY < endY;
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderUtils.cpp 632 uint8_t *srcY, *dstY;
636 dstY = pDestBuffer + destImage.offsets[0];
641 memcpy(dstY, srcY, width);
643 dstY += destImage.pitches[0];
  /external/skia/src/gpu/vk/
GrVkGpu.cpp     [all...]
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 386 int dstY = (targetHeight - src.height()) / 2;
389 dstY,
391 targetHeight - dstY);
  /packages/apps/Gallery/src/com/android/camera/
Util.java 177 int dstY = (targetHeight - src.height()) / 2;
180 dstY,
182 targetHeight - dstY);
  /external/mesa3d/src/mesa/main/
teximage.c     [all...]
  /external/skia/dm/
DMSrcSink.cpp 458 int dstY = codec->outputScanline(y);
459 void* dstPtr = bitmap.getAddr(0, dstY);
    [all...]

Completed in 774 milliseconds

1 2