Searched defs:y1 (Results 1 - 25 of 143) sorted by relevance

123456

/external/clang/test/CXX/temp/temp.param/
H A Dp15.cpp11 Y<(1 >> 2)> *y1; variable
/external/skia/legacy/src/animator/
H A DSkDrawLine.h23 SkScalar y1; member in class:SkLine
/external/skia/src/animator/
H A DSkDrawLine.h23 SkScalar y1; member in class:SkLine
/external/clang/test/PCH/
H A Dpr4489.c44 void y1(void) function
/external/valgrind/main/memcheck/tests/
H A Dbadrw.c12 char y1; local
25 y1 = *x1;
26 *x1 = y1;
/external/ceres-solver/internal/ceres/
H A Dpartitioned_matrix_view_test.cc94 Vector y1 = Vector::Zero(m.num_rows()); local
95 m.RightMultiplyE(x1.data(), y1.data());
101 EXPECT_NEAR(y1(i), y2(i), kEpsilon);
119 Vector y1 = Vector::Zero(m.num_rows()); local
120 m.RightMultiplyF(x1.data(), y1.data());
126 EXPECT_NEAR(y1(i), y2(i), kEpsilon);
142 Vector y1 = Vector::Zero(m.num_cols_e()); local
146 m.LeftMultiplyE(x.data(), y1.data());
151 (i < m.num_cols_e()) ? y1(i) : y2(i - m.num_cols_e()),
/external/clang/test/SemaCXX/
H A Dconverting-constructor.cpp45 void y1() { function
H A Dwarn-literal-conversion.cpp9 int y1 = (1.2222F); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} 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
102 y1 = 0;
103 __HI(y1) = hb;
104 y2 = b - y1;
108 w = ieee_sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
/external/skia/legacy/src/utils/
H A DSkCubicInterval.cpp49 SkScalar SkEvalCubicInterval(SkScalar x1, SkScalar y1, argument
64 y1 *= 3;
66 return eval_cubic(y1, y2 - 2*y1, y1 - y2 + SK_Scalar1, t);
/external/skia/src/utils/
H A DSkCubicInterval.cpp49 SkScalar SkEvalCubicInterval(SkScalar x1, SkScalar y1, argument
64 y1 *= 3;
66 return eval_cubic(y1, y2 - 2*y1, y1 - y2 + SK_Scalar1, t);
/external/clang/test/Sema/
H A Dbitfield-promote.c10 long long y1; variable
11 __typeof__(((long long)x1.x + 1)) y1;
/external/compiler-rt/lib/ppc/
H A Dgcc_qdiv.c18 y = src.s.hi, y1 = src.s.lo; local
48 tmp = ((tmp + x1) - y1 * q) / y;
/external/dropbear/libtommath/
H A Dbn_mp_karatsuba_mul.c49 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
68 if (mp_init_size (&y1, b->used - B) != MP_OKAY)
82 y1.used = b->used - B;
106 tmpy = y1.dp;
113 * upper words x1/y1 must have a known number of digits
122 if (mp_mul (&x1, &y1, &x1y1) != MP_OKAY)
123 goto X1Y1; /* x1y1 = x1*y1 */
125 /* now calc x1+x0 and y1+y0 */
128 if (s_mp_add (&y1, &y0, &x0) != MP_OKAY)
129 goto X1Y1; /* t2 = y1
[all...]
/external/clang/test/CXX/over/over.over/
H A Dp1.cpp91 Y1<f0> y1; variable
/external/libvpx/libvpx/vp8/common/
H A Dtextblit.c61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch) argument
63 int steep = abs(y1 - y0) > abs(x1 - x0);
75 x1 = y1;
76 y1 = t;
87 y0 = y1;
88 y1 = t;
92 deltay = abs(y1 - y0);
97 if (y0 < y1)
/external/qemu/android/skin/
H A Drect.h60 int x1, y1; member in struct:__anon11131
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
/external/skia/tests/
H A DClipCubicTest.cpp60 float x1, float y1,
65 crv[1].fX = SkFloatToScalar(x1); crv[1].fY = SkFloatToScalar(y1);
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));
75 double y1() const { return m_y1; } function in class:WebCore::CSSCubicBezierTimingFunctionValue
80 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2) argument
82 , m_y1(y1)
/external/webkit/Source/WebCore/svg/
H A DLinearGradientAttributes.h41 SVGLength y1() const { return m_y1; } function in struct:WebCore::LinearGradientAttributes
H A DSVGPathSegCurvetoQuadratic.h31 SVGPathSegCurvetoQuadratic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
36 , m_y1(y1)
61 float y1() const { return m_y1; } function in class:WebCore::SVGPathSegCurvetoQuadratic
62 void setY1(float y1) argument
64 m_y1 = y1;
77 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
79 return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, role, x, y, x1, y1));
83 SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
84 : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1)
94 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
100 SVGPathSegCurvetoQuadraticRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
[all...]
/external/chromium/chrome/browser/chromeos/frame/
H A Dbubble_window.cc17 bool IsInsideCircle(int x0, int y0, int x1, int y1, int r) { argument
18 return (x0 - x1) * (x0 - x1) + (y0 - y1) * (y0 - y1) <= r * r;
/external/eigen/Eigen/src/Core/arch/SSE/
H A DMathFunctions.h81 Packet4f y, y1, y2; local
83 y1 = pmadd(p4f_cephes_log_p3, x, p4f_cephes_log_p4);
86 y1 = pmadd(y1, x, p4f_cephes_log_p5);
88 y = pmadd(y, x3, y1);
92 y1 = pmul(e, p4f_cephes_log_q1);
94 y = padd(y, y1);
/external/freetype/src/base/
H A Dftbbox.c91 /* y1 :: The start coordinate. */
103 BBox_Conic_Check( FT_Pos y1, argument
109 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
112 if ( y1 < y3 )
114 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
119 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
121 y2 = y1;
122 y1 = y3;
128 y1
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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPath.java40 public void quadTo(float x1, float y1, float x2, float y2) { argument
41 quadDescription = "Add a quadratic bezier from last point, approaching (" + x1 + "," + y1 + "), " +

Completed in 993 milliseconds

123456