Searched refs:y3 (Results 1 - 25 of 117) sorted by relevance

12345

/external/pdfium/core/src/fxge/agg/agg23/
H A Dfx_agg_curves.cpp30 FX_FLOAT x3, FX_FLOAT y3,
36 bezier(x1, y1, x2, y2, x3, y3, x4, y4);
41 FX_FLOAT x3, FX_FLOAT y3,
51 FX_FLOAT y23 = (y2 + y3) / 2;
53 FX_FLOAT y34 = (y3 + y4) / 2;
63 FX_FLOAT d3 = FXSYS_fabs(FXSYS_Mul(x3 - x4, dy) - FXSYS_Mul(y3 - y4, dx));
68 FXSYS_fabs(y1 + y3 - y2 - y2) +
70 FXSYS_fabs(y2 + y4 - y3 - y3) <= m_distance_tolerance_manhattan) {
102 FX_FLOAT x3, FX_FLOAT y3,
28 init(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_FLOAT x3, FX_FLOAT y3, FX_FLOAT x4, FX_FLOAT y4) argument
39 recursive_bezier(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_FLOAT x3, FX_FLOAT y3, FX_FLOAT x4, FX_FLOAT y4, unsigned level) argument
100 bezier(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_FLOAT x3, FX_FLOAT y3, FX_FLOAT x4, FX_FLOAT y4) argument
[all...]
H A Dagg_curves.h27 FX_FLOAT x3, FX_FLOAT y3,
35 cp[5] = y3;
41 FX_FLOAT x3, FX_FLOAT y3,
49 cp[5] = y3;
71 FX_FLOAT x3, FX_FLOAT y3,
76 init(x1, y1, x2, y2, x3, y3, x4, y4);
90 FX_FLOAT x3, FX_FLOAT y3,
128 FX_FLOAT x3, FX_FLOAT y3,
132 FX_FLOAT x3, FX_FLOAT y3,
147 FX_FLOAT x3, FX_FLOAT y3,
25 curve4_points(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_FLOAT x3, FX_FLOAT y3, FX_FLOAT x4, FX_FLOAT y4) argument
39 init(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_FLOAT x3, FX_FLOAT y3, FX_FLOAT x4, FX_FLOAT y4) argument
69 curve4_div(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_FLOAT x3, FX_FLOAT y3, FX_FLOAT x4, FX_FLOAT y4) argument
145 curve4(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_FLOAT x3, FX_FLOAT y3, FX_FLOAT x4, FX_FLOAT y4) argument
160 init(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_FLOAT x3, FX_FLOAT y3, FX_FLOAT x4, FX_FLOAT y4) argument
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftbbox.c97 /* y3 :: The end coordinate. */
107 FT_Pos y3,
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 */
124 y1 = y3;
125 y3 = y2;
130 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 );
105 BBox_Conic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos* min, FT_Pos* max ) argument
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...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftbbox.c97 /* y3 :: The end coordinate. */
107 FT_Pos y3,
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 */
124 y1 = y3;
125 y3 = y2;
130 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 );
105 BBox_Conic_Check( FT_Pos y1, FT_Pos y2, FT_Pos y3, FT_Pos* min, FT_Pos* max ) argument
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...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dbezier.h36 float x3, y3; member in struct:bezier
53 float x3, float y3,
H A Dbezier.c52 left->y3 = bez->y2 + t * (bez->y3 - bez->y2);
55 bez->y3 = bez->y3 + t * (bez->y4 - bez->y3);
58 bez->y2 = left->y3 + t * (bez->y3 - left->y3);
61 left->y3 = left->y2 + t * (left->y3
166 bezier_init(struct bezier *bez, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) argument
[all...]
H A Dpath.c365 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
468 y3 = data[5];
471 map_if_relative(ox, oy, relative, &x3, &y3);
473 oy = y3;
480 matrix_map_point(matrix, x3, y3, &x3, &y3);
482 x2, y2, x3, y3);
494 y3 = data[3];
496 map_if_relative(ox, oy, relative, &x3, &y3);
501 y2 = (y3
1027 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1058 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1088 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1234 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dbezier.h36 float x3, y3; member in struct:bezier
53 float x3, float y3,
H A Dbezier.c52 left->y3 = bez->y2 + t * (bez->y3 - bez->y2);
55 bez->y3 = bez->y3 + t * (bez->y4 - bez->y3);
58 bez->y2 = left->y3 + t * (bez->y3 - left->y3);
61 left->y3 = left->y2 + t * (left->y3
166 bezier_init(struct bezier *bez, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) argument
[all...]
H A Dpath.c365 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
468 y3 = data[5];
471 map_if_relative(ox, oy, relative, &x3, &y3);
473 oy = y3;
480 matrix_map_point(matrix, x3, y3, &x3, &y3);
482 x2, y2, x3, y3);
494 y3 = data[3];
496 map_if_relative(ox, oy, relative, &x3, &y3);
501 y2 = (y3
1027 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1058 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1088 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1234 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-literal-conversion.cpp11 int y3 = 12E-1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2 to 1}} local
H A Ddefault-constructor-initializers.cpp36 Y3 y3; variable
/external/speex/libspeex/
H A Dltp_arm4.h101 spx_word32_t y0, y1, y2, y3; local
105 y3=*y++;
173 : "+r" (y0), "+r" (y1), "+r" (y2), "+r" (y3),
/external/chromium_org/v8/test/webkit/
H A Dfor-in-cached.js65 forIn3({ __proto__: { __proto__: { y3 : 2 } } });
66 forIn3({ __proto__: { __proto__: { y3 : 2 } } });
67 shouldBe("forIn3({ __proto__: { __proto__: { y3 : 2 } } })", "['x', 'y3']");
/external/fonttools/Lib/fontTools/pens/
H A DreportLabPen.py28 (x3,y3) = p3
29 self.path.curveTo(x1, y1, x2, y2, x3, y3)
H A DpointInsidePen.py111 x3, y3 = bcp2
116 if y1 < y and y2 < y and y3 < y and y4 < y:
118 if y1 >= y and y2 >= y and y3 >= y and y4 >= y:
123 by = (y3 - y2) * 3.0 - cy
176 x3, y3 = point
179 a = y3 - c - b
/external/fonttools/Tools/fontTools/pens/
H A DreportLabPen.py28 (x3,y3) = p3
29 self.path.curveTo(x1, y1, x2, y2, x3, y3)
H A DpointInsidePen.py111 x3, y3 = bcp2
116 if y1 < y and y2 < y and y3 < y and y4 < y:
118 if y1 >= y and y2 >= y and y3 >= y and y4 >= y:
123 by = (y3 - y2) * 3.0 - cy
176 x3, y3 = point
179 a = y3 - c - b
/external/pixman/demos/
H A Dquad2quad.c13 double x3, double y3,
118 t6 = px2 * px3 * t5 * y3;
120 t7 = - px2 * px3 * x2 * x3 * y3;
126 t12 = - px2 * py3 * t5 * y3;
128 t13 = px2 * py3 * x2 * x3 * y3;
154 t34 = - px3 * py2 * y3;
156 t35 = px2 * py3 * y3;
161 t39 = - px2 * px3 * t5 * y3;
163 t40 = px2 * px3 * x2 * x3 * y3;
169 t45 = px2 * py3 * t5 * y3;
10 quad_to_quad(double x0, double y0, double x1, double y1, double x2, double y2, double x3, double y3, double px0, double py0, double px1, double py1, double px2, double py2, double px3, double py3, struct pixman_f_transform *trans) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkEdge.cpp337 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
348 y3 = SkScalarRoundToFDot6(pts[3].fY, shift);
358 y3 = int(pts[3].fY * scale);
363 if (y0 > y3)
367 SkTSwap(y0, y3);
373 int bot = SkFDot6Round(y3);
389 SkFDot6 dy = cubic_delta_from_line(y0, y1, y2, y3);
426 D = SkFDot6UpShift(y3 + 3 * (y1 - y2) - y0, upShift);
434 fCLastY = SkFDot6ToFixed(y3);
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2intrp.c717 CF2_Fixed y3 = cf2_stack_getReal( opStack, index + 5 ) + y2; local
720 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
723 curY = y3;
1271 CF2_Fixed y3 = cf2_stack_getReal( opStack, index + 5 ) + y2; local
1274 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
1277 curY = y3;
1295 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1311 y3 = cf2_stack_getReal( opStack, index + 3 ) + y2;
1313 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
1316 curY = y3;
1334 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1376 CF2_Fixed x1, x2, x3, y1, y2, y3; local
[all...]
/external/freetype/src/cff/
H A Dcf2intrp.c717 CF2_Fixed y3 = cf2_stack_getReal( opStack, index + 5 ) + y2; local
720 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
723 curY = y3;
1271 CF2_Fixed y3 = cf2_stack_getReal( opStack, index + 5 ) + y2; local
1274 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
1277 curY = y3;
1295 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1311 y3 = cf2_stack_getReal( opStack, index + 3 ) + y2;
1313 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
1316 curY = y3;
1334 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1376 CF2_Fixed x1, x2, x3, y1, y2, y3; local
[all...]
/external/opencv/cvaux/src/
H A Ddecomppoly.cpp152 int x1, y1, x2, y2, x3, y3;
190 y3 = contour[ index3 ].y;
197 dy2 = y3 - y2;
202 iy1 = y3 - y1;
246 y2 = y3;
256 y3 = contour[ index3 ].y;
271 y2 = y3;
285 y3 = contour[ index3 ].y;
300 y2 = y3;
314 y3
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2intrp.c719 CF2_Fixed y3 = cf2_stack_getReal( opStack, index + 5 ) + y2; local
722 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
725 curY = y3;
1273 CF2_Fixed y3 = cf2_stack_getReal( opStack, index + 5 ) + y2; local
1276 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
1279 curY = y3;
1297 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1313 y3 = cf2_stack_getReal( opStack, index + 3 ) + y2;
1315 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
1318 curY = y3;
1336 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1378 CF2_Fixed x1, x2, x3, y1, y2, y3; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DDynamicsCompressorKernel.cpp258 float y3 = releaseFrames * releaseZone3; local
262 // match the evenly spaced x values as follows: (y1 : x == 0, y2 : x == 1, y3 : x == 2, y4 : x == 3)
263 float kA = 0.9999999999999998f*y1 + 1.8432219684323923e-16f*y2 - 1.9373394351676423e-16f*y3 + 8.824516011816245e-18f*y4;
264 float kB = -1.5788320352845888f*y1 + 2.3305837032074286f*y2 - 0.9141194204840429f*y3 + 0.1623677525612032f*y4;
265 float kC = 0.5334142869106424f*y1 - 1.272736789213631f*y2 + 0.9258856042207512f*y3 - 0.18656310191776226f*y4;
266 float kD = 0.08783463138207234f*y1 - 0.1694162967925622f*y2 + 0.08588057951595272f*y3 - 0.00429891410546283f*y4;
267 float kE = -0.042416883008123074f*y1 + 0.1115693827987602f*y2 - 0.09764676325265872f*y3 + 0.028494263462021576f*y4;

Completed in 4665 milliseconds

12345