/external/mesa3d/src/gallium/state_trackers/vega/ |
D | bezier.h | 33 struct bezier { struct 50 void bezier_init(struct bezier *bez, 56 struct polygon *bezier_to_polygon(struct bezier *bez); 57 void bezier_add_to_polygon(const struct bezier *bez, 59 float bezier_length(struct bezier *bez, float error); 60 void bezier_transform(struct bezier *bez, 63 int bezier_translate_by_normal(struct bezier *b, 64 struct bezier *curves, 68 void bezier_bounds(const struct bezier *bez, 70 void bezier_exact_bounds(const struct bezier *bez, [all …]
|
D | arc.c | 453 void (*bezier)(struct arc_cb *cb, struct bezier *bezier); member 468 static void polygon_bezier(struct arc_cb *cb, struct bezier *bezier) in polygon_bezier() argument 471 bezier_add_to_polygon(bezier, poly); in polygon_bezier() 480 static void stroke_curve(struct arc_cb *cb, struct bezier *bezier) in stroke_curve() argument 484 bezier->x2, bezier->y2, in stroke_curve() 485 bezier->x3, bezier->y3, in stroke_curve() 486 bezier->x4, bezier->y4); in stroke_curve() 495 static void stroke_emit_curve(struct arc_cb *cb, struct bezier *bezier) in stroke_emit_curve() argument 499 bezier->x2, bezier->y2, in stroke_emit_curve() 500 bezier->x3, bezier->y3, in stroke_emit_curve() [all …]
|
D | bezier.c | 43 static INLINE void split_left(struct bezier *bez, VGfloat t, struct bezier* left) in split_left() 67 static INLINE void split(struct bezier *bez, in split() 68 struct bezier *first_half, in split() 69 struct bezier *second_half) in split() 92 struct polygon * bezier_to_polygon(struct bezier *bez) in bezier_to_polygon() 100 void bezier_add_to_polygon(const struct bezier *bez, in bezier_add_to_polygon() 103 struct bezier beziers[32]; in bezier_add_to_polygon() 104 struct bezier *b; in bezier_add_to_polygon() 134 static void add_if_close(struct bezier *bez, VGfloat *length, VGfloat error) in add_if_close() 136 struct bezier left, right; /* bez poly splits */ in add_if_close() [all …]
|
D | path.c | 459 struct bezier bezier; in path_get_fill_polygons() local 481 bezier_init(&bezier, x0, y0, x1, y1, in path_get_fill_polygons() 483 bezier_add_to_polygon(&bezier, current); in path_get_fill_polygons() 487 struct bezier bezier; in path_get_fill_polygons() local 512 bezier_init(&bezier, x0, y0, x1, y1, in path_get_fill_polygons() 514 bezier_add_to_polygon(&bezier, current); in path_get_fill_polygons() 518 struct bezier bezier; in path_get_fill_polygons() local 542 bezier_init(&bezier, x0, y0, x1, y1, in path_get_fill_polygons() 544 bezier_add_to_polygon(&bezier, current); in path_get_fill_polygons() 548 struct bezier bezier; in path_get_fill_polygons() local [all …]
|
D | stroker.c | 263 struct bezier bezier; in stroke_flat_next() local 275 bezier_init(&bezier, in stroke_flat_next() 286 itr->curve_poly = bezier_to_polygon(&bezier); in stroke_flat_next() 874 struct bezier offset_curves[MAX_OFFSET]; in vg_stroke_outline() 948 struct bezier bezier; in vg_stroke_outline() local 951 bezier_init(&bezier, in vg_stroke_outline() 955 count = bezier_translate_by_normal(&bezier, in vg_stroke_outline() 966 bezier_start_tangent(&bezier, tangent); in vg_stroke_outline() 968 offset_curves[0].x1 - bezier.x1, in vg_stroke_outline() 969 offset_curves[0].y1 - bezier.y1); in vg_stroke_outline() [all …]
|
D | SConscript | 31 'bezier.c',
|
/external/pdfium/xfa/fxgraphics/ |
D | cfx_path.cpp | 62 CFX_PointF bezier; in ArcToInternal() local 63 bezier.x = pos.x + (size.width * ((points[0].x * cs) - (points[0].y * sn))); in ArcToInternal() 64 bezier.y = pos.y + (size.height * ((points[0].x * sn) + (points[0].y * cs))); in ArcToInternal() 65 data_.AppendPoint(bezier, FXPT_TYPE::BezierTo, false); in ArcToInternal() 67 bezier.x = pos.x + (size.width * ((points[1].x * cs) - (points[1].y * sn))); in ArcToInternal() 68 bezier.y = pos.y + (size.height * ((points[1].x * sn) + (points[1].y * cs))); in ArcToInternal() 69 data_.AppendPoint(bezier, FXPT_TYPE::BezierTo, false); in ArcToInternal() 71 bezier.x = pos.x + (size.width * FXSYS_cos(start_angle + sweep_angle)); in ArcToInternal() 72 bezier.y = pos.y + (size.height * FXSYS_sin(start_angle + sweep_angle)); in ArcToInternal() 73 data_.AppendPoint(bezier, FXPT_TYPE::BezierTo, false); in ArcToInternal()
|
/external/pdfium/third_party/agg23/ |
D | agg_curves.cpp | 38 bezier(x1, y1, x2, y2, x3, y3, x4, y4); in init() 102 void curve4_div::bezier(FX_FLOAT x1, FX_FLOAT y1, in bezier() function in agg::curve4_div
|
D | agg_curves.h | 124 void bezier(FX_FLOAT x1, FX_FLOAT y1,
|
/external/fio/tools/plot/ |
D | graph2D.gpm | 31 plot '$1' using 2:3 smooth bezier title '$2', $7 w l ls 1 ti 'Global average value ($7)'
|
/external/ImageMagick/Magick++/ |
D | ChangeLog | 926 (PathCurvetoAbs): New class. Cubic bezier, absolute coordinates 927 (PathCurvetoRel): New class. Cubic bezier, relative coordinates 928 (PathSmoothCurvetoAbs): New class. Cubic bezier, absolute 930 (PathSmoothCurvetoRel): New class. Cubic bezier, relative 934 (PathQuadraticCurvetoAbs): New class. Quadratic bezier, absolute 936 (PathQuadraticCurvetoRel): New class. Quadratic bezier, relative 938 (PathSmoothQuadraticCurvetoAbs): New class. Quadratic bezier, 940 (PathSmoothQuadraticCurvetoRel): New class. Quadratic bezier,
|
/external/doclava/res/assets/templates-sdk/assets/css/ |
D | default.css | 5936 …-webkit-transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-… 5937 …transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0… 7704 -webkit-transition: background-color 0.35s cubic-bezier(0.35, 0, 0.25, 1); 7705 transition: background-color 0.35s cubic-bezier(0.35, 0, 0.25, 1);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |