Searched defs:y2 (Results 1 - 25 of 102) sorted by relevance

12345

/external/clang/test/CXX/temp/temp.param/
H A Dp15.cpp12 Y<1 >> 2> *y2; // expected-warning{{use of right-shift operator ('>>') in template argument will require parentheses in C++11}} variable
/external/clang/test/PCH/Inputs/
H A Dchain-external-defs2.h5 int y2; variable
/external/clang/test/PCH/
H A Dchain-external-defs.c27 // YB: @y2 = global i32 18
28 // YB-NOT: @y2 = global i32 18
29 int y2 = 18; variable
/external/skia/src/animator/
H A DSkDrawLine.h24 SkScalar y2; member in class:SkLine
H A DSkPathParts.h74 SkScalar y2; member in class:SkQuadTo
92 SkScalar y2; member in class:SkCubicTo
/external/valgrind/main/memcheck/tests/
H A Dbadrw.c11 short y2; local
22 y2 = *x2;
23 *x2 = y2;
/external/clang/test/CXX/stmt.stmt/stmt.dcl/
H A Dp3-0x.cpp39 Y y2; // expected-note{{jump bypasses variable with a non-trivial destructor}} local
/external/clang/test/SemaCXX/
H A Dcxx0x-class.cpp26 static constexpr float y2 = foo(); // expected-error {{must be initialized by a constant expression}} expected-note {{non-constexpr function 'foo'}} member in struct:rdar8367341::A
H A Dwarn-literal-conversion.cpp10 int y2 = (((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} local
H A Ddefault-constructor-initializers.cpp39 Y2 y2; member in struct:Y4
/external/clang/test/SemaTemplate/
H A Dpartial-spec-instantiate.cpp37 int f(Y<int*> y, Y<float*> y2) { argument
38 return y.m + y2.m;
H A Dinstantiate-static-var.cpp73 int y2[Y2<X2>::value]; local
/external/fdlibm/
H A De_hypot.c30 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
32 * y1= y with lower 32 bits chopped, y2 = y-y1.
55 double a=x,b=y,t1,t2,y1,y2,w; local
104 y2 = b - y1;
108 w = ieee_sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
/external/skia/src/utils/
H A DSkCubicInterval.cpp50 SkScalar x2, SkScalar y2,
65 y2 *= 3;
66 return eval_cubic(y1, y2 - 2*y1, y1 - y2 + SK_Scalar1, t);
49 SkEvalCubicInterval(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar unitX) argument
/external/clang/test/CXX/over/over.over/
H A Dp1.cpp93 Y2<f0> y2; variable
/external/qemu/android/skin/
H A Drect.h61 int x2, y2; member in struct:__anon10286
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
/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
/external/webkit/Source/WebCore/css/
H A DCSSTimingFunctionValue.h69 static PassRefPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2) argument
71 return adoptRef(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2));
77 double y2() const { return m_y2; } function in class:WebCore::CSSCubicBezierTimingFunctionValue
80 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2) argument
84 , m_y2(y2)
/external/webkit/Source/WebCore/svg/
H A DLinearGradientAttributes.h43 SVGLength y2() const { return m_y2; } function in struct:WebCore::LinearGradientAttributes
H A DSVGPathSegCurvetoCubicSmooth.h31 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
36 , m_y2(y2)
61 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubicSmooth
62 void setY2(float y2) argument
64 m_y2 = y2;
77 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
79 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2));
83 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
84 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
94 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
100 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
[all...]
H A DSVGPathSegCurvetoCubic.h31 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
38 , m_y2(y2)
77 float y2() const { return m_y2; } function in class:WebCore::SVGPathSegCurvetoCubic
78 void setY2(float y2) argument
80 m_y2 = y2;
95 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
97 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
101 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
102 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
112 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
118 SVGPathSegCurvetoCubicRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
[all...]
H A DSVGPathStringSource.cpp165 float y2; local
171 || !parseNumber(m_current, m_end, y2)
176 point2 = FloatPoint(x2, y2);
200 float y2; local
204 || !parseNumber(m_current, m_end, y2)
208 point2 = FloatPoint(x2, y2);
/external/freetype/src/base/
H A Dftbbox.c93 /* y2 :: The coordinate of the control point. */
104 FT_Pos y2,
109 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
114 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
119 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
121 y2 = y1;
123 y3 = y2;
128 y1 = y3 = y1 - FT_MulDiv( y2
103 BBox_Conic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos* min, FT_Pos* max ) argument
289 test_cubic_extrema( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos y4, FT_Fixed u, FT_Pos* min, FT_Pos* max ) argument
333 BBox_Cubic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos y4, FT_Pos* min, FT_Pos* max ) argument
[all...]
/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/speex/libspeex/
H A Dltp_arm4.h101 spx_word32_t y0, y1, y2, y3; local
104 y2=*y++;
173 : "+r" (y0), "+r" (y1), "+r" (y2), "+r" (y3),

Completed in 752 milliseconds

12345