Searched refs:y1 (Results 1 - 25 of 546) sorted by relevance

1234567891011>>

/external/valgrind/main/memcheck/tests/
H A Dbadrw.c12 char y1; local
25 y1 = *x1;
26 *x1 = y1;
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawLine.cpp20 SK_MEMBER(y1, Float),
28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
/external/skia/src/animator/
H A DSkDrawLine.cpp20 SK_MEMBER(y1, Float),
28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegCurvetoQuadraticAbs.h31 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
33 return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, role, x, y, x1, y1));
37 SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
38 : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1)
H A DSVGPathSegCurvetoQuadraticRel.h31 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
33 return adoptRef(new SVGPathSegCurvetoQuadraticRel(element, role, x, y, x1, y1));
37 SVGPathSegCurvetoQuadraticRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
38 : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1)
H A DSVGPathSegCurvetoQuadraticAbs.idl31 [StrictTypeChecking] attribute float y1;
H A DSVGPathSegCurvetoQuadraticRel.idl31 [StrictTypeChecking] attribute float y1;
H A DSVGPathSegCurvetoQuadratic.h30 SVGPathSegCurvetoQuadratic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
35 , m_y1(y1)
60 float y1() const { return m_y1; } function in class:WebCore::SVGPathSegCurvetoQuadratic
61 void setY1(float y1) argument
63 m_y1 = y1;
H A DSVGPathSegCurvetoCubicAbs.h31 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
33 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
37 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
38 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
H A DSVGPathSegCurvetoCubicRel.h31 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
33 return adoptRef(new SVGPathSegCurvetoCubicRel(element, role, x, y, x1, y1, x2, y2));
37 SVGPathSegCurvetoCubicRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) argument
38 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
H A DSVGLineElement.idl28 readonly attribute SVGAnimatedLength y1;
H A DSVGLinearGradientElement.idl28 readonly attribute SVGAnimatedLength y1;
H A DSVGPathSegCurvetoCubicAbs.idl31 [StrictTypeChecking] attribute float y1;
H A DSVGPathSegCurvetoCubicRel.idl31 [StrictTypeChecking] attribute float y1;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_textblit.h16 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
/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/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/chromium_org/third_party/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/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree_perf.tcl18 set y1 [expr {rand()*1000}]
19 set y2 [expr {$y1+rand()*50}]
20 lappend data $x1 $x2 $y1 $y2
25 set sql1 {CREATE TABLE btree(ii INTEGER PRIMARY KEY, x1, x2, y1, y2)}
26 set sql2 {CREATE VIRTUAL TABLE rtree USING rtree(ii, x1, x2, y1, y2)}
39 foreach {x1 x2 y1 y2} $data {
40 db eval {INSERT INTO btree VALUES($ii, $x1, $x2, $y1, $y2)}
50 foreach {x1 x2 y1 y2} $data {
52 db eval {INSERT INTO rtree VALUES($ii, $x1, $x2, $y1, $y2)}
61 foreach {x1 x2 y1 y
[all...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
H A Djquery.flot.dashes.js70 y1 = points[i - ps + 1],
77 if (y1 <= y2 && y1 < axisy.min) {
80 x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
81 y1 = axisy.min;
82 } else if (y2 <= y1 && y2 < axisy.min) {
83 if (y1 < axisy.min) continue;
84 x2 = (axisy.min - y1) / (y2 - y1) * (x
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
H A Djquery.flot.dashes.js70 y1 = points[i - ps + 1],
77 if (y1 <= y2 && y1 < axisy.min) {
80 x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
81 y1 = axisy.min;
82 } else if (y2 <= y1 && y2 < axisy.min) {
83 if (y1 < axisy.min) continue;
84 x2 = (axisy.min - y1) / (y2 - y1) * (x
[all...]
/external/clang/test/CXX/temp/temp.param/
H A Dp15.cpp11 Y<(1 >> 2)> *y1; variable
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGLine.cpp16 SVG_ATTRIBUTE(y1),
26 SVG_ADD_ATTRIBUTE(y1);
/external/skia/src/svg/
H A DSkSVGLine.cpp16 SVG_ATTRIBUTE(y1),
26 SVG_ADD_ATTRIBUTE(y1);
/external/freetype/src/base/
H A Dftbbox.c93 /* y1 :: The start coordinate. */
105 BBox_Conic_Check( FT_Pos y1, argument
111 if ( y1 <= y3 && y2 == y1 ) /* flat arc */
114 if ( y1 < y3 )
116 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */
121 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */
123 y2 = y1;
124 y1 = y3;
130 y1
326 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
370 BBox_Cubic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos y4, FT_Pos* min, FT_Pos* max ) argument
[all...]

Completed in 4590 milliseconds

1234567891011>>