Searched refs:y2 (Results 51 - 75 of 181) sorted by relevance

12345678

/external/webkit/Source/WebCore/svg/
H A DSVGPathElement.cpp114 PassRefPtr<SVGPathSegCurvetoCubicAbs> SVGPathElement::createSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2, SVGPathSegRole role) argument
116 return SVGPathSegCurvetoCubicAbs::create(this, role, x, y, x1, y1, x2, y2);
119 PassRefPtr<SVGPathSegCurvetoCubicRel> SVGPathElement::createSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2, SVGPathSegRole role) argument
121 return SVGPathSegCurvetoCubicRel::create(this, role, x, y, x1, y1, x2, y2);
164 PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> SVGPathElement::createSVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2, SVGPathSegRole role) argument
166 return SVGPathSegCurvetoCubicSmoothAbs::create(this, role, x, y, x2, y2);
169 PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> SVGPathElement::createSVGPathSegCurvetoCubicSmoothRel(float x, float y, float x2, float y2, SVGPathSegRole role) argument
171 return SVGPathSegCurvetoCubicSmoothRel::create(this, role, x, y, x2, y2);
H A DSVGLinearGradientElement.cpp46 DEFINE_ANIMATED_LENGTH(SVGLinearGradientElement, SVGNames::y2Attr, Y2, y2)
178 attributes.setY2(linear->y2());
205 endPoint = FloatPoint(attributes.x2().valueAsPercentage(), attributes.y2().valueAsPercentage());
208 endPoint = FloatPoint(attributes.x2().value(this), attributes.y2().value(this));
217 || y2().isRelative();
H A DSVGLineElement.cpp39 DEFINE_ANIMATED_LENGTH(SVGLineElement, SVGNames::y2Attr, Y2, y2)
157 path.addLineTo(FloatPoint(x2().value(this), y2().value(this)));
165 || y2().isRelative();
H A DSVGPathSegListSource.cpp104 point2 = FloatPoint(cubic->x2(), cubic->y2());
114 point2 = FloatPoint(cubicSmooth->x2(), cubicSmooth->y2());
/external/openssl/crypto/ec/
H A Dec2_smpl.c423 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; local
451 y2 = BN_CTX_get(ctx);
502 if (!BN_GF2m_add(y2, x1, x2)) goto err;
503 if (!group->meth->field_mul(group, y2, y2, s, ctx)) goto err;
504 if (!BN_GF2m_add(y2, y2, x2)) goto err;
505 if (!BN_GF2m_add(y2, y2, y1)) goto err;
507 if (!EC_POINT_set_affine_coordinates_GF2m(group, r, x2, y2, ct
554 BIGNUM *lh, *y2; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/wscons/
H A DSDL_wsconsvideo.c477 int x1, y1, x2, y2; local
488 y2 = y1 + rects[i].h;
505 if (y2 < 0) {
506 y2 = 0;
507 } else if (y2 > height) {
508 y2 = height;
510 if (x2 <= x1 || y2 <= y1) {
519 scr_y2 = y2;
526 scr_x2 = y2;
535 scr_y1 = height - y2;
[all...]
/external/chromium-trace/trace-viewer/src/tracks/
H A Dtimeline_viewport_track.js78 drawLine_: function(ctx, x1, y1, x2, y2, color) {
81 ctx.lineTo(x2, y2);
87 drawArrow_: function(ctx, x1, y1, x2, y2, arrowWidth, color) {
89 this.drawLine_(ctx, x1, y1, x2, y2, color);
92 var dy = y2 - y1;
105 ctx.lineTo(x2, y2);
/external/qemu/distrib/sdl-1.2.15/src/video/aalib/
H A DSDL_aavideo.c203 static void fastscale (register char *b1, register char *b2, int x1, int x2, int y1, int y2) argument
209 if (!x1 || !x2 || !y1 || !y2)
216 ddy1 = y2 + y2;
220 for (; y2; y2--) {
/external/webkit/Source/WebKit/android/plugins/
H A DANPPathInterface.cpp72 float x1, float y1, float x2, float y2) {
75 SkFloatToScalar(x2), SkFloatToScalar(y2));
71 anp_cubicTo(ANPPath* path, float x0, float y0, float x1, float y1, float x2, float y2) argument
/external/clang/test/SemaCXX/
H A Ddcl_init_aggr.cpp92 float y2[4][3] = { { 1, 3, 5 }, { 2, 4, 6 }, { 3, 5, 7 } }; variable
/external/clang/test/SemaTemplate/
H A Dinstantiate-invalid.cpp3 template<class Conv> class rasterizer_sl_clip Conv::xi(x2), Conv::yi(y2));
H A Dinstantiate-static-var.cpp73 int y2[Y2<X2>::value]; local
/external/webkit/Source/WebCore/platform/audio/
H A DBiquad.cpp79 double y2 = m_y2;
90 float y = a0*x + a1*x1 + a2*x2 - b1*y1 - b2*y2;
99 y2 = y1;
107 m_y2 = y2;
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebThemeControlDRTWin.h150 void triangle(int x0, int y0, int x1, int y1, int x2, int y2, SkColor color);
/external/opencv/cv/src/
H A Dcvlinefit.cpp48 double x = 0, y = 0, x2 = 0, y2 = 0, xy = 0, w = 0; local
63 y2 += points[i].y * points[i].y;
75 y2 += weights[i] * points[i].y * points[i].y;
84 y2 /= w;
88 dy2 = y2 - y * y;
107 float x2 = 0, y2 = 0, z2 = 0, xy = 0, yz = 0, xz = 0; local
129 y2 += y * y * w;
149 y2 += y * y;
162 y2 /= w0;
173 dy2 = y2
[all...]
/external/qemu/android/skin/
H A Dregion.c334 if (ybot > minmax->y2) minmax->y2 = ybot;
376 skin_region_init( SkinRegion* r, int x1, int y1, int x2, int y2 )
378 if (x1 >= x2 || y1 >= y2) {
385 r->bounds.size.h = y2 - y1;
403 if (box == NULL || box->x1 >= box->x2 || box->y1 >= box->y2) {
410 r->bounds.size.h = box->y2 - box->y1;
1003 minmax.x2 = minmax.y2 = INT_MIN;
1275 boxes->x1, boxes->y1, boxes->x2, boxes->y2 );
1280 b.y1 != boxes->y1 || b.y2 !
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderObject.cpp709 void RenderObject::drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1, int x2, int y2, argument
713 int width = (side == BSTop || side == BSBottom ? y2 - y1 : x2 - x1);
735 graphicsContext->drawLine(IntPoint(x1, (y1 + y2) / 2), IntPoint(x2, (y1 + y2) / 2));
739 graphicsContext->drawLine(IntPoint((x1 + x2) / 2, y1), IntPoint((x1 + x2) / 2, y2));
759 graphicsContext->drawRect(IntRect(x1, y2 - third, x2 - x1, third));
762 graphicsContext->drawRect(IntRect(x1, y1 + 1, third, y2 - y1 - 1));
763 graphicsContext->drawRect(IntRect(x2 - third, y1 + 1, third, y2 - y1 - 1));
766 graphicsContext->drawRect(IntRect(x1, y1 + 1, third, y2 - y1 - 1));
767 graphicsContext->drawRect(IntRect(x2 - third, y1 + 1, third, y2
[all...]
/external/skia/src/core/
H A DSkBitmapProcState_matrix_repeat.h353 int32x4_t x, y, x2, y2; local
381 x2 = q2; y2 = q3;
394 y2 = vandq_s32(y2, vdupq_n_s32(0xffff));
395 y2 = vmulq_s32(y2, vdupq_n_s32(maxY+1));
398 /* (hi-x, hi-y)4 (hi-x2; hi-y2)4 */
406 y2 = vsriq_n_s32(y2, x2, 16);
407 hi2 = vreinterpretq_s16_s32(y2);
[all...]
H A DSkMatrix.cpp1428 SkFixed x0, y0, x1, y1, x2, y2; local
1435 y2 = srcPt[2].fY - srcPt[3].fY;
1437 /* check if abs(x2) > abs(y2) */
1438 if ( x2 > 0 ? y2 > 0 ? x2 > y2 : x2 > -y2 : y2 > 0 ? -x2 > y2 : x2 < y2) {
1439 SkFixed denom = SkMulDiv(x1, y2, x
1561 float x0, y0, x1, y1, x2, y2; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DContextShadowCairo.cpp90 double x1, x2, y1, y2; local
91 cairo_clip_extents(context->platformContext()->cr(), &x1, &y1, &x2, &y2);
92 IntRect layerRect = calculateLayerBoundingRect(context, layerArea, IntRect(x1, y1, x2 - x1, y2 - y1));
227 double x1, x2, y1, y2; local
228 cairo_clip_extents(cr, &x1, &y1, &x2, &y2);
229 calculateLayerBoundingRect(context, shadowRect, IntRect(x1, y1, x2 - x1, y2 - y1));
/external/freetype/src/raster/
H A Dftraster.c871 Int y2, n; local
885 y2 = (Int)y_turns[n];
887 y = y2;
1063 /* y2 :: The y-coordinate of the segment's end point. */
1076 Long y2,
1088 Dy = y2 - y1;
1090 if ( Dy <= 0 || y2 < miny || y1 > maxy )
1107 if ( y2 > maxy )
1109 /* x2 += FMulDiv( Dx, maxy - y2, Dy ); UNNECESSARY */
1115 e2 = (Int)TRUNC( y2 );
1073 Line_Up( RAS_ARGS Long x1, Long y1, Long x2, Long y2, Long miny, Long maxy ) argument
1212 Line_Down( RAS_ARGS Long x1, Long y1, Long x2, Long y2, Long miny, Long maxy ) argument
1264 Long y1, y2, e, e2, e0; local
1542 Long y1, y2, y3, x3, ymin, ymax; local
1664 Long y1, y2, y3, y4, x4, ymin1, ymax1, ymin2, ymax2; local
1948 Long x1, y1, x2, y2, x3, y3; local
[all...]
/external/chromium/chrome/browser/resources/ntp/
H A Ddrag_drop_controller.js75 var y2 = Math.pow(p1.y - p2.y, 2);
76 return Math.sqrt(x2 + y2);
/external/clang/test/Index/
H A Dcomplete-method-decls.m47 - (id)first:(int)xx second2:(float)y2 third:(double)z;
115 // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType id}{Informative first:}{TypedText second2:}{Text (float)y2}{HorizontalSpace }{TypedText third:}{Text (double)z} (35)
123 // CHECK-CCA: NotImplemented:{TypedText y2} (40)
129 // CHECK-CCD: ObjCInstanceMethodDecl:{ResultType id}{Informative first:}{TypedText second2:}{Text (float)y2}{HorizontalSpace }{TypedText third:}{Text (double)z} (35)
/external/skia/src/animator/
H A DSkPathParts.h74 SkScalar y2; member in class:SkQuadTo
92 SkScalar y2; member in class:SkCubicTo
/external/skia/tests/
H A DClipCubicTest.cpp61 float x2, float y2,
66 crv[2].fX = SkFloatToScalar(x2); crv[2].fY = SkFloatToScalar(y2);
59 SetCurve(float x0, float y0, float x1, float y1, float x2, float y2, float x3, float y3, SkPoint crv[4]) argument

Completed in 917 milliseconds

12345678