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

1234567891011>>

/external/clang/test/CXX/temp/temp.param/
H A Dp15.cpp11 Y<(1 >> 2)> *y1; variable
/external/chromium_org/third_party/skia/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/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegCurvetoQuadraticAbs.h32 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, float x, float y, float x1, float y1) argument
34 return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, x, y, x1, y1));
38 SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, float x, float y, float x1, float y1) argument
39 : SVGPathSegCurvetoQuadratic(element, x, y, x1, y1) { }
H A DSVGPathSegCurvetoQuadraticRel.h32 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, float x, float y, float x1, float y1) argument
34 return adoptRef(new SVGPathSegCurvetoQuadraticRel(element, x, y, x1, y1));
38 SVGPathSegCurvetoQuadraticRel(SVGPathElement* element, float x, float y, float x1, float y1) argument
39 : SVGPathSegCurvetoQuadratic(element, x, y, x1, y1) { }
H A DSVGLineElement.h37 SVGAnimatedLength* y1() const { return m_y1.get(); } function in class:blink::FINAL
H A DSVGLinearGradientElement.h40 SVGAnimatedLength* y1() const { return m_y1.get(); } function in class:blink::FINAL
H A DSVGPathSegCurvetoCubicAbs.h32 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2) argument
34 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, x, y, x1, y1, x2, y2));
38 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2) argument
39 : SVGPathSegCurvetoCubic(element, x, y, x1, y1, x2, y2) { }
H A DSVGPathSegCurvetoCubicRel.h32 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2) argument
34 return adoptRef(new SVGPathSegCurvetoCubicRel(element, x, y, x1, y1, x2, y2));
38 SVGPathSegCurvetoCubicRel(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2) argument
39 : SVGPathSegCurvetoCubic(element, x, y, x1, y1, x2, y2) { }
/external/clang/test/PCH/
H A Dpr4489.c38 void y1(void) function
/external/valgrind/main/memcheck/tests/
H A Dbadrw.c12 char y1; local
25 y1 = *x1;
26 *x1 = y1;
/external/chromium_org/cc/blink/
H A Dweb_filter_animation_curve_impl.cc40 double y1,
49 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2)
38 add(const WebFilterKeyframe& keyframe, double x1, double y1, double x2, double y2) argument
H A Dweb_float_animation_curve_impl.cc40 double y1,
46 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2)
38 add(const WebFloatKeyframe& keyframe, double x1, double y1, double x2, double y2) argument
H A Dweb_float_animation_curve_unittest.cc203 double y1 = 0.2; local
206 curve->add(WebFloatKeyframe(0, 0), x1, y1, x2, y2);
211 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2));
H A Dweb_transform_animation_curve_impl.cc44 double y1,
53 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2)
42 add(const WebTransformKeyframe& keyframe, double x1, double y1, double x2, double y2) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_rect.h36 int y0, y1; member in struct:u_rect
47 a->y1 < b->y0 ||
48 b->y1 < a->y0));
62 if (b->y1 > a->y1) b->y1 = a->y1;
74 b->x0 = b->x1 = b->y0 = b->y1 = 0;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dbezier.h34 float x1, y1; member in struct:bezier
51 float x1, float y1,
/external/chromium_org/third_party/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/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/mesa3d/src/gallium/auxiliary/util/
H A Du_rect.h36 int y0, y1; member in struct:u_rect
47 a->y1 < b->y0 ||
48 b->y1 < a->y0));
62 if (b->y1 > a->y1) b->y1 = a->y1;
74 b->x0 = b->x1 = b->y0 = b->y1 = 0;
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dbezier.h34 float x1, y1; member in struct:bezier
51 float x1, float y1,
/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/ceres-solver/internal/ceres/
H A Dpartitioned_matrix_view_test.cc93 Vector y1 = Vector::Zero(pmv_->num_rows()); local
94 pmv_->RightMultiplyE(x1.data(), y1.data());
100 EXPECT_NEAR(y1(i), y2(i), kEpsilon);
113 Vector y1 = Vector::Zero(pmv_->num_rows()); local
114 pmv_->RightMultiplyF(x1.data(), y1.data());
120 EXPECT_NEAR(y1(i), y2(i), kEpsilon);
131 Vector y1 = Vector::Zero(pmv_->num_cols_e()); local
135 pmv_->LeftMultiplyE(x.data(), y1.data());
140 (i < pmv_->num_cols_e()) ? y1(i) : y2(i - pmv_->num_cols_e()),

Completed in 445 milliseconds

1234567891011>>