Searched refs:dstX (Results 1 - 25 of 75) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGradientGeneratedImage.cpp55 float dstX = (srcRect.x() + i * stepX) * scale.width() + phase.x(); local
57 ASSERT(i > firstColumn || dstX <= destRect.x());
58 ASSERT(i == firstColumn || dstX > destRect.x());
60 if (dstX >= destRect.maxX())
62 float dstMaxX = dstX + srcRect.width() * scale.width();
63 if (dstX < destRect.x())
64 dstX = destRect.x();
67 if (dstX >= dstMaxX)
72 tileDstRect.setX(dstX);
73 tileDstRect.setWidth(dstMaxX - dstX);
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fb3dfx.c57 int dstX, dstY; local
73 dstX = rect->x;
83 tdfx_out32(LAUNCH_2D, dstX | (dstY << 16));
102 int dstX, dstY; local
123 dstX = dstrect->x;
128 if ( srcX <= dstX ) {
131 dstX += (dstrect->w - 1);
157 tdfx_out32(DSTXY, dstX | (dstY << 16));
H A DSDL_fbriva.c75 int dstX, dstY; local
90 FB_dst_to_xy(this, dst, &dstX, &dstY);
93 dstX += rect->x;
100 Bitmap->UnclippedRectangle[0].TopLeft = (dstX << 16) | dstY;
116 int dstX, dstY; local
137 FB_dst_to_xy(this, dst, &dstX, &dstY);
142 dstX += dstrect->x;
147 Blt->TopLeftDst = (dstY << 16) | dstX;
H A DSDL_fbmatrox.c67 int dstX, dstY; local
89 FB_dst_to_xy(this, dst, &dstX, &dstY);
92 dstX += rect->x;
96 fxbndry = (dstX | ((dstX+rect->w) << 16));
126 int dstX, dstY; local
149 FB_dst_to_xy(this, dst, &dstX, &dstY);
154 dstX += dstrect->x;
160 if ( srcX < dstX ) {
171 if ( srcX < dstX ) {
[all...]
/external/clang/test/CodeGenCXX/
H A Dcopy-assign-synthesis.cpp70 X dstX; variable
74 dstY = dstX = srcX;
76 dstX.pr();
H A Dcopy-assign-synthesis-1.cpp85 X dstX; variable
89 dstY = dstX = srcX;
91 dstX.pr();
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_composite.h23 int dstX, int dstY, int width, int height);
H A Dxorg_renderer.c140 float srcX, float srcY, float dstX, float dstY,
173 add_vertex_1tex(r, dstX, dstY, s0, t0);
175 add_vertex_1tex(r, dstX + width, dstY, s1, t1);
177 add_vertex_1tex(r, dstX + width, dstY + height, s2, t2);
179 add_vertex_1tex(r, dstX, dstY + height, s3, t3);
211 float dstX, float dstY, float width, float height,
272 add_vertex_2tex(r, dstX, dstY,
275 add_vertex_2tex(r, dstX + width, dstY,
278 add_vertex_2tex(r, dstX + width, dstY + height,
281 add_vertex_2tex(r, dstX, dst
139 add_vertex_data1(struct xorg_renderer *r, float srcX, float srcY, float dstX, float dstY, float width, float height, struct pipe_resource *src, float *src_matrix) argument
209 add_vertex_data2(struct xorg_renderer *r, float srcX, float srcY, float maskX, float maskY, float dstX, float dstY, float width, float height, struct pipe_resource *src, struct pipe_resource *mask, float *src_matrix, float *mask_matrix) argument
286 setup_vertex_data_yuv(struct xorg_renderer *r, float srcX, float srcY, float srcW, float srcH, float dstX, float dstY, float dstW, float dstH, struct pipe_resource **tex) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_composite.h23 int dstX, int dstY, int width, int height);
H A Dxorg_renderer.c140 float srcX, float srcY, float dstX, float dstY,
173 add_vertex_1tex(r, dstX, dstY, s0, t0);
175 add_vertex_1tex(r, dstX + width, dstY, s1, t1);
177 add_vertex_1tex(r, dstX + width, dstY + height, s2, t2);
179 add_vertex_1tex(r, dstX, dstY + height, s3, t3);
211 float dstX, float dstY, float width, float height,
272 add_vertex_2tex(r, dstX, dstY,
275 add_vertex_2tex(r, dstX + width, dstY,
278 add_vertex_2tex(r, dstX + width, dstY + height,
281 add_vertex_2tex(r, dstX, dst
139 add_vertex_data1(struct xorg_renderer *r, float srcX, float srcY, float dstX, float dstY, float width, float height, struct pipe_resource *src, float *src_matrix) argument
209 add_vertex_data2(struct xorg_renderer *r, float srcX, float srcY, float maskX, float maskY, float dstX, float dstY, float width, float height, struct pipe_resource *src, struct pipe_resource *mask, float *src_matrix, float *mask_matrix) argument
286 setup_vertex_data_yuv(struct xorg_renderer *r, float srcX, float srcY, float srcW, float srcH, float dstX, float dstY, float dstW, float dstH, struct pipe_resource **tex) argument
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkNinePatch.cpp263 SkScalar dstX[4] = { local
272 if (dstX[1] > dstX[2]) {
273 dstX[1] = dstX[0] + (dstX[3] - dstX[0]) * SkIntToScalar(margins.fLeft) /
275 dstX[2] = dstX[1];
294 d.fLeft = dstX[
[all...]
/external/skia/src/utils/
H A DSkNinePatch.cpp263 SkScalar dstX[4] = { local
272 if (dstX[1] > dstX[2]) {
273 dstX[1] = dstX[0] + (dstX[3] - dstX[0]) * SkIntToScalar(margins.fLeft) /
275 dstX[2] = dstX[1];
294 d.fLeft = dstX[
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A Dxa_renderer.c187 float srcX, float srcY, float dstX, float dstY,
220 add_vertex_1tex(r, dstX, dstY, s0, t0);
222 add_vertex_1tex(r, dstX + width, dstY, s1, t1);
224 add_vertex_1tex(r, dstX + width, dstY + height, s2, t2);
226 add_vertex_1tex(r, dstX, dstY + height, s3, t3);
232 float dstX, float dstY, float width, float height,
273 add_vertex_2tex(r, dstX, dstY,
276 add_vertex_2tex(r, dstX + width, dstY,
279 add_vertex_2tex(r, dstX + width, dstY + height,
282 add_vertex_2tex(r, dstX, dst
186 add_vertex_data1(struct xa_context *r, float srcX, float srcY, float dstX, float dstY, float width, float height, struct pipe_resource *src, const float *src_matrix) argument
230 add_vertex_data2(struct xa_context *r, float srcX, float srcY, float maskX, float maskY, float dstX, float dstY, float width, float height, struct pipe_resource *src, struct pipe_resource *mask, const float *src_matrix, const float *mask_matrix) argument
287 setup_vertex_data_yuv(struct xa_context *r, float srcX, float srcY, float srcW, float srcH, float dstX, float dstY, float dstW, float dstH, struct xa_surface *srf[]) argument
[all...]
H A Dxa_composite.h136 int dstX, int dstY, int width, int height);
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_renderer.c187 float srcX, float srcY, float dstX, float dstY,
220 add_vertex_1tex(r, dstX, dstY, s0, t0);
222 add_vertex_1tex(r, dstX + width, dstY, s1, t1);
224 add_vertex_1tex(r, dstX + width, dstY + height, s2, t2);
226 add_vertex_1tex(r, dstX, dstY + height, s3, t3);
232 float dstX, float dstY, float width, float height,
273 add_vertex_2tex(r, dstX, dstY,
276 add_vertex_2tex(r, dstX + width, dstY,
279 add_vertex_2tex(r, dstX + width, dstY + height,
282 add_vertex_2tex(r, dstX, dst
186 add_vertex_data1(struct xa_context *r, float srcX, float srcY, float dstX, float dstY, float width, float height, struct pipe_resource *src, const float *src_matrix) argument
230 add_vertex_data2(struct xa_context *r, float srcX, float srcY, float maskX, float maskY, float dstX, float dstY, float width, float height, struct pipe_resource *src, struct pipe_resource *mask, const float *src_matrix, const float *mask_matrix) argument
287 setup_vertex_data_yuv(struct xa_context *r, float srcX, float srcY, float srcW, float srcH, float dstX, float dstY, float dstW, float dstH, struct xa_surface *srf[]) argument
[all...]
H A Dxa_composite.h136 int dstX, int dstY, int width, int height);
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFUtils.h46 SkScalar dstX, SkScalar dstY, SkWStream* content);
H A DSkPDFUtils.cpp78 SkScalar dstX, SkScalar dstY, SkWStream* content) {
84 if (ctl2X != dstX || ctl2Y != dstY) {
91 SkPDFScalar::Append(dstX, content);
76 AppendCubic(SkScalar ctl1X, SkScalar ctl1Y, SkScalar ctl2X, SkScalar ctl2Y, SkScalar dstX, SkScalar dstY, SkWStream* content) argument
/external/skia/src/pdf/
H A DSkPDFUtils.h46 SkScalar dstX, SkScalar dstY, SkWStream* content);
H A DSkPDFUtils.cpp78 SkScalar dstX, SkScalar dstY, SkWStream* content) {
84 if (ctl2X != dstX || ctl2Y != dstY) {
91 SkPDFScalar::Append(dstX, content);
76 AppendCubic(SkScalar ctl1X, SkScalar ctl1Y, SkScalar ctl2X, SkScalar ctl2Y, SkScalar dstX, SkScalar dstY, SkWStream* content) argument
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder.cpp192 int dstX, int dstY, int width, int height,
205 int x = (dstX - srcX) / sampleSize;
232 canvas.drawSprite(*src, (srcX - dstX) / sampleSize,
191 cropBitmap(SkBitmap *dst, SkBitmap *src, int sampleSize, int dstX, int dstY, int width, int height, int srcX, int srcY) argument
/external/skia/src/images/
H A DSkImageDecoder.cpp217 int dstX, int dstY, int width, int height,
230 int x = (dstX - srcX) / sampleSize;
257 canvas.drawSprite(*src, (srcX - dstX) / sampleSize,
216 cropBitmap(SkBitmap *dst, SkBitmap *src, int sampleSize, int dstX, int dstY, int width, int height, int srcX, int srcY) argument
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkLinearGradient.cpp257 SkScalar dstX = SkIntToScalar(x); local
260 dstProc(fDstToIndex, dstX, dstY, &srcPt);
265 dstX += SK_Scalar1;
444 SkScalar dstX = SkIntToScalar(x); local
447 dstProc(fDstToIndex, dstX, dstY, &srcPt);
455 dstX += SK_Scalar1;
/external/skia/src/effects/gradients/
H A DSkLinearGradient.cpp243 SkScalar dstX = SkIntToScalar(x); local
246 dstProc(fDstToIndex, dstX, dstY, &srcPt);
251 dstX += SK_Scalar1;
430 SkScalar dstX = SkIntToScalar(x); local
433 dstProc(fDstToIndex, dstX, dstY, &srcPt);
441 dstX += SK_Scalar1;
H A DSkRadialGradient.cpp214 SkScalar dstX = SkIntToScalar(x); local
217 dstProc(fDstToIndex, dstX, dstY, &srcPt);
225 dstX += SK_Scalar1;
444 SkScalar dstX = SkIntToScalar(x); local
447 dstProc(fDstToIndex, dstX, dstY, &srcPt);
451 dstX += SK_Scalar1;

Completed in 1409 milliseconds

123