HomeSort by relevance Sort by last modified time
    Searched refs:dstX (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/clang/test/CodeGenCXX/
copy-assign-synthesis.cpp 70 X dstX;
74 dstY = dstX = srcX;
76 dstX.pr();
copy-assign-synthesis-1.cpp 85 X dstX;
89 dstY = dstX = srcX;
91 dstX.pr();
  /hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
AnnCursorPlane.cpp 99 int dstX = mPosition.x;
154 if (dstX < 0) {
156 dstX = -dstX;
162 mContext.ctx.cs_ctx.pos |= (dstY & 0xfff) << 16 | (dstX & 0xfff);
AnnRGBPlane.cpp 92 int dstX, dstY, dstW, dstH;
102 dstX = mPosition.x;
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 93 int dstX = mPosition.x;
103 dstX = mModeInfo.hdisplay - dstX - cursorSize;
177 if (dstX < 0) {
179 dstX = -dstX;
185 mContext.ctx.cs_ctx.pos |= (dstY & 0xfff) << 16 | (dstX & 0xfff);
TngSpritePlane.cpp 41 int dstX, dstY, dstW, dstH;
50 dstX = mPosition.x;
55 checkPosition(dstX, dstY, dstW, dstH);
100 mContext.ctx.sp_ctx.pos = (dstY & 0xfff) << 16 | (dstX & 0xfff);
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_renderer.c 200 float srcX, float srcY, float dstX, float dstY,
233 add_vertex_1tex(r, dstX, dstY, s0, t0);
235 add_vertex_1tex(r, dstX + width, dstY, s1, t1);
237 add_vertex_1tex(r, dstX + width, dstY + height, s2, t2);
239 add_vertex_1tex(r, dstX, dstY + height, s3, t3);
245 float dstX, float dstY, float width, float height,
286 add_vertex_2tex(r, dstX, dstY,
289 add_vertex_2tex(r, dstX + width, dstY,
292 add_vertex_2tex(r, dstX + width, dstY + height,
295 add_vertex_2tex(r, dstX, dstY + height
    [all...]
xa_composite.h 136 int dstX, int dstY, int width, int height);
xa_composite.c 511 int dstX, int dstY, int width, int height)
514 renderer_solid(ctx, dstX, dstY, dstX + width, dstY + height,
518 int pos[6] = {srcX, srcY, maskX, maskY, dstX, dstY};
522 xa_scissor_update(ctx, dstX, dstY, dstX + width, dstY + height);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
AnnCursorPlane.cpp 98 int dstX = mPosition.x;
175 if (dstX < 0) {
177 dstX = -dstX;
183 mContext.ctx.cs_ctx.pos |= (dstY & 0xfff) << 16 | (dstX & 0xfff);
AnnRGBPlane.cpp 151 int dstX, dstY, dstW, dstH;
161 dstX = mPosition.x;
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/skia/src/codec/
SkBmpRLECodec.cpp 176 const int dstX = get_dst_coord(x, fSampleX);
181 dstRow[dstX] = fColorTable->operator[](index);
186 dstRow[dstX] = SkPixel32ToPixel16(fColorTable->operator[](index));
210 const int dstX = get_dst_coord(x, fSampleX);
214 dstRow[dstX] = SkPackARGB_as_RGBA(0xFF, red, green, blue);
219 dstRow[dstX] = SkPackARGB_as_BGRA(0xFF, red, green, blue);
224 dstRow[dstX] = SkPack888ToRGB16(red, green, blue);
SkBmpStandardCodec.cpp 319 for (int dstX = 0; dstX < sampledWidth; dstX++) {
325 applyMask(dstRow, dstX, alphaBit);
SkWebpCodec.cpp 452 int dstX = frameRect.x();
466 int minXOffset = SkTMin(dstX, subset.x());
468 dstX -= minXOffset;
503 dstX = scaleX * dstX;
589 config.output.u.RGBA.rgba = reinterpret_cast<uint8_t*>(webpDst.getAddr(dstX, dstY));
621 dst = SkTAddOffset<void>(dst, dstBpp * dstX + rowBytes * dstY);
  /external/skqp/src/codec/
SkBmpRLECodec.cpp 176 const int dstX = get_dst_coord(x, fSampleX);
181 dstRow[dstX] = fColorTable->operator[](index);
186 dstRow[dstX] = SkPixel32ToPixel16(fColorTable->operator[](index));
210 const int dstX = get_dst_coord(x, fSampleX);
214 dstRow[dstX] = SkPackARGB_as_RGBA(0xFF, red, green, blue);
219 dstRow[dstX] = SkPackARGB_as_BGRA(0xFF, red, green, blue);
224 dstRow[dstX] = SkPack888ToRGB16(red, green, blue);
SkBmpStandardCodec.cpp 319 for (int dstX = 0; dstX < sampledWidth; dstX++) {
325 applyMask(dstRow, dstX, alphaBit);
SkWebpCodec.cpp 452 int dstX = frameRect.x();
466 int minXOffset = SkTMin(dstX, subset.x());
468 dstX -= minXOffset;
503 dstX = scaleX * dstX;
589 config.output.u.RGBA.rgba = reinterpret_cast<uint8_t*>(webpDst.getAddr(dstX, dstY));
621 dst = SkTAddOffset<void>(dst, dstBpp * dstX + rowBytes * dstY);
  /external/mesa3d/src/mesa/main/
copyimage.c 457 GLint dstX, GLint dstY, GLint dstZ,
478 dstX, dstY, dstZ,
530 if ((dstX % dst_bw != 0) || (dstY % dst_bh != 0)) {
560 dstX, dstY, dstZ, dstWidth, dstHeight, dstDepth,
610 dstX, dstY, newDstZ,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iimgctx.h 67 STDMETHOD(StretchBlt)(THIS_ HDC hdc,int dstX,int dstY,int dstXE,int dstYE,int srcX,int srcY,int srcXE,int srcYE,DWORD dwROP) PURE;
83 #define IImgCtx_StretchBlt(This,hdc,dstX,dstY,dstXE,dstYE,srcX,srcY,srcXE,srcYE,dwROP) (This)->lpVtbl->StretchBlt(This,hdc,dstX,dstY,dstXE,dstYE,srcX,srcY,srcXE,srcYE,dwROP)
  /external/skia/include/core/
SkSurface.h     [all...]
  /external/skia/tests/
BitmapCopyTest.cpp 197 const int dstX = gRec[i].fExpectedDstLoc.x();
204 int sx = x - dstX + srcR.x();
  /external/skqp/tests/
BitmapCopyTest.cpp 197 const int dstX = gRec[i].fExpectedDstLoc.x();
204 int sx = x - dstX + srcR.x();
  /external/mesa3d/src/mesa/swrast/
s_copypix.c 51 GLint dstx, GLint dsty,
57 dstx, dsty, dstx + width, dsty + height);
61 if (srcx > (dstx + ((zoomX > 0.0F) ? (width * zoomX + 1.0F) : 0.0F))) {
65 else if (srcx + width + 1.0F < dstx + ((zoomX > 0.0F) ? 0.0F : (width * zoomX))) {
437 GLint dstX, GLint dstY, GLenum type)
487 dstX < dstFb->_Xmin || dstX + width > dstFb->_Xmax ||
513 dstMap = map + dstY * rowStride + dstX * pixelBytes;
538 ctx->Driver.MapRenderbuffer(ctx, dstRb, dstX, dstY
    [all...]
  /external/skia/src/pdf/
SkPDFUtils.cpp 77 SkScalar dstX, SkScalar dstY, SkWStream* content) {
83 if (ctl2X != dstX || ctl2Y != dstY) {
90 SkPDFUtils::AppendScalar(dstX, content);
  /external/skqp/src/pdf/
SkPDFUtils.cpp 77 SkScalar dstX, SkScalar dstY, SkWStream* content) {
83 if (ctl2X != dstX || ctl2Y != dstY) {
90 SkPDFUtils::AppendScalar(dstX, content);

Completed in 403 milliseconds

1 2 3 4