Home
last modified time | relevance | path

Searched refs:to_y (Results 1 – 21 of 21) sorted by relevance

/third_party/harfbuzz/src/
Dhb-draw.hh72 hb_position_t to_x, hb_position_t to_y) in quadratic_to()
74 if (equal_to_current (control_x, control_y) && equal_to_current (to_x, to_y)) in quadratic_to()
78 funcs->quadratic_to (control_x, control_y, to_x, to_y, user_data); in quadratic_to()
83 roundf ((to_y + 2.f * control_y) / 3.f), in quadratic_to()
84 to_x, to_y, user_data); in quadratic_to()
86 current_y = to_y; in quadratic_to()
92 hb_position_t to_x, hb_position_t to_y) in cubic_to()
96 equal_to_current (to_x, to_y)) in cubic_to()
99 funcs->cubic_to (control1_x, control1_y, control2_x, control2_y, to_x, to_y, user_data); in cubic_to()
101 current_y = to_y; in cubic_to()
Dhb-draw.h37 typedef void (*hb_draw_move_to_func_t) (hb_position_t to_x, hb_position_t to_y, void *user_data);
38 typedef void (*hb_draw_line_to_func_t) (hb_position_t to_x, hb_position_t to_y, void *user_data);
40 hb_position_t to_x, hb_position_t to_y,
44 hb_position_t to_x, hb_position_t to_y,
Dhb-draw.cc123 _move_to_nil (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED… in _move_to_nil()
126 _line_to_nil (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED… in _line_to_nil()
130 hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, in _quadratic_to_nil()
136 hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, in _cubic_to_nil()
Dmain.cc138 move_to (hb_position_t to_x, hb_position_t to_y, user_data_t &user_data) in move_to() argument
140 fprintf (user_data.f, "M%d,%d", to_x, user_data.ascender - to_y); in move_to()
144 line_to (hb_position_t to_x, hb_position_t to_y, user_data_t &user_data) in line_to() argument
146 fprintf (user_data.f, "L%d,%d", to_x, user_data.ascender - to_y); in line_to()
151 hb_position_t to_x, hb_position_t to_y, in quadratic_to() argument
155 to_x, user_data.ascender - to_y); in quadratic_to()
161 hb_position_t to_x, hb_position_t to_y, in cubic_to() argument
166 to_x, user_data.ascender - to_y); in cubic_to()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-draw.hh72 hb_position_t to_x, hb_position_t to_y) in quadratic_to()
74 if (equal_to_current (control_x, control_y) && equal_to_current (to_x, to_y)) in quadratic_to()
78 funcs->quadratic_to (control_x, control_y, to_x, to_y, user_data); in quadratic_to()
83 roundf ((to_y + 2.f * control_y) / 3.f), in quadratic_to()
84 to_x, to_y, user_data); in quadratic_to()
86 current_y = to_y; in quadratic_to()
92 hb_position_t to_x, hb_position_t to_y) in cubic_to()
96 equal_to_current (to_x, to_y)) in cubic_to()
99 funcs->cubic_to (control1_x, control1_y, control2_x, control2_y, to_x, to_y, user_data); in cubic_to()
101 current_y = to_y; in cubic_to()
Dhb-draw.h37 typedef void (*hb_draw_move_to_func_t) (hb_position_t to_x, hb_position_t to_y, void *user_data);
38 typedef void (*hb_draw_line_to_func_t) (hb_position_t to_x, hb_position_t to_y, void *user_data);
40 hb_position_t to_x, hb_position_t to_y,
44 hb_position_t to_x, hb_position_t to_y,
Dhb-draw.cc123 _move_to_nil (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED… in _move_to_nil()
126 _line_to_nil (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED… in _line_to_nil()
130 hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, in _quadratic_to_nil()
136 hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, in _cubic_to_nil()
Dmain.cc139 move_to (hb_position_t to_x, hb_position_t to_y, user_data_t &user_data) in move_to() argument
141 fprintf (user_data.f, "M%d,%d", to_x, user_data.ascender - to_y); in move_to()
145 line_to (hb_position_t to_x, hb_position_t to_y, user_data_t &user_data) in line_to() argument
147 fprintf (user_data.f, "L%d,%d", to_x, user_data.ascender - to_y); in line_to()
152 hb_position_t to_x, hb_position_t to_y, in quadratic_to() argument
156 to_x, user_data.ascender - to_y); in quadratic_to()
162 hb_position_t to_x, hb_position_t to_y, in cubic_to() argument
167 to_x, user_data.ascender - to_y); in cubic_to()
/third_party/skia/third_party/externals/harfbuzz/test/fuzzing/
Dhb-draw-fuzzer.cc20 _move_to (hb_position_t to_x, hb_position_t to_y, void *user_data_) in _move_to() argument
26 user_data->path_start_y = user_data->path_last_y = to_y; in _move_to()
30 _line_to (hb_position_t to_x, hb_position_t to_y, void *user_data_) in _line_to() argument
34 assert (user_data->path_last_x != to_x || user_data->path_last_y != to_y); in _line_to()
37 user_data->path_last_y = to_y; in _line_to()
42 hb_position_t to_x, hb_position_t to_y, void *user_data_) in _quadratic_to() argument
47 user_data->path_last_x != to_x || user_data->path_last_y != to_y); in _quadratic_to()
50 user_data->path_last_y = to_y; in _quadratic_to()
56 hb_position_t to_x, hb_position_t to_y, void *user_data_) in _cubic_to() argument
62 user_data->path_last_x != to_x || user_data->path_last_y != to_y); in _cubic_to()
[all …]
/third_party/harfbuzz/test/fuzzing/
Dhb-draw-fuzzer.cc20 _move_to (hb_position_t to_x, hb_position_t to_y, void *user_data_) in _move_to() argument
26 user_data->path_start_y = user_data->path_last_y = to_y; in _move_to()
30 _line_to (hb_position_t to_x, hb_position_t to_y, void *user_data_) in _line_to() argument
34 assert (user_data->path_last_x != to_x || user_data->path_last_y != to_y); in _line_to()
37 user_data->path_last_y = to_y; in _line_to()
42 hb_position_t to_x, hb_position_t to_y, void *user_data_) in _quadratic_to() argument
47 user_data->path_last_x != to_x || user_data->path_last_y != to_y); in _quadratic_to()
50 user_data->path_last_y = to_y; in _quadratic_to()
56 hb_position_t to_x, hb_position_t to_y, void *user_data_) in _cubic_to() argument
62 user_data->path_last_x != to_x || user_data->path_last_y != to_y); in _cubic_to()
[all …]
/third_party/skia/third_party/externals/harfbuzz/perf/
Dperf-draw.hh15 _hb_move_to (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED)… in _hb_move_to()
18 _hb_line_to (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED)… in _hb_line_to()
22 hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, in _hb_quadratic_to()
28 hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, in _hb_cubic_to()
/third_party/harfbuzz/perf/
Dperf-draw.hh15 _hb_move_to (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED)… in _hb_move_to()
18 _hb_line_to (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED)… in _hb_line_to()
22 hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, in _hb_quadratic_to()
28 hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, in _hb_cubic_to()
/third_party/skia/third_party/externals/harfbuzz/test/api/
Dtest-draw.c98 move_to (hb_position_t to_x, hb_position_t to_y, user_data_t *user_data) in move_to() argument
105 user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed); in move_to()
109 line_to (hb_position_t to_x, hb_position_t to_y, user_data_t *user_data) in line_to() argument
115 user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed); in line_to()
120 hb_position_t to_x, hb_position_t to_y, in quadratic_to() argument
132 user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed); in quadratic_to()
138 hb_position_t to_x, hb_position_t to_y, in cubic_to() argument
153 user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed); in cubic_to()
/third_party/harfbuzz/test/api/
Dtest-draw.c98 move_to (hb_position_t to_x, hb_position_t to_y, user_data_t *user_data) in move_to() argument
105 user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed); in move_to()
109 line_to (hb_position_t to_x, hb_position_t to_y, user_data_t *user_data) in line_to() argument
115 user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed); in line_to()
120 hb_position_t to_x, hb_position_t to_y, in quadratic_to() argument
132 user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed); in quadratic_to()
138 hb_position_t to_x, hb_position_t to_y, in cubic_to() argument
153 user_data->consumed += _hb_itoa (to_y, user_data->str + user_data->consumed); in cubic_to()
/third_party/flutter/skia/third_party/externals/freetype/src/smooth/
Dftgrays.c707 TPos to_y ) in gray_render_line() argument
715 ey2 = TRUNC( to_y ); /* if (ey2 >= ras.max_ey) ey2 = ras.max_ey-1; */ in gray_render_line()
723 fy2 = FRACT( to_y ); in gray_render_line()
733 dy = to_y - ras.y; in gray_render_line()
839 ras.y = to_y; in gray_render_line()
850 TPos to_y ) in gray_render_line() argument
858 ey2 = TRUNC( to_y ); in gray_render_line()
872 dy = to_y - ras.y; in gray_render_line()
970 fy2 = FRACT( to_y ); in gray_render_line()
977 ras.y = to_y; in gray_render_line()
/third_party/freetype/src/smooth/
Dftgrays.c706 TPos to_y ) in gray_render_line() argument
714 ey2 = TRUNC( to_y ); /* if (ey2 >= ras.max_ey) ey2 = ras.max_ey-1; */ in gray_render_line()
722 fy2 = FRACT( to_y ); in gray_render_line()
732 dy = to_y - ras.y; in gray_render_line()
838 ras.y = to_y; in gray_render_line()
849 TPos to_y ) in gray_render_line() argument
857 ey2 = TRUNC( to_y ); in gray_render_line()
871 dy = to_y - ras.y; in gray_render_line()
969 fy2 = FRACT( to_y ); in gray_render_line()
976 ras.y = to_y; in gray_render_line()
/third_party/skia/third_party/externals/freetype/src/smooth/
Dftgrays.c733 TPos to_y ) in gray_render_line() argument
741 ey2 = TRUNC( to_y ); /* if (ey2 >= ras.max_ey) ey2 = ras.max_ey-1; */ in gray_render_line()
749 fy2 = FRACT( to_y ); in gray_render_line()
759 dy = to_y - ras.y; in gray_render_line()
860 ras.y = to_y; in gray_render_line()
871 TPos to_y ) in gray_render_line() argument
879 ey2 = TRUNC( to_y ); in gray_render_line()
893 dy = to_y - ras.y; in gray_render_line()
986 fy2 = FRACT( to_y ); in gray_render_line()
992 ras.y = to_y; in gray_render_line()
/third_party/weston/kiosk-shell/
Dkiosk-shell.c672 float to_x, to_y; in desktop_surface_committed() local
676 weston_view_to_global_float(shsurf->view, sx, sy, &to_x, &to_y); in desktop_surface_committed()
678 y = shsurf->view->geometry.y + to_y - from_y; in desktop_surface_committed()
/third_party/weston/desktop-shell/
Dshell.c1612 wl_fixed_t to_x, to_y; in resize_grab_motion() local
1623 pointer->x, pointer->y, &to_x, &to_y); in resize_grab_motion()
1634 height += wl_fixed_to_int(from_y - to_y); in resize_grab_motion()
1636 height += wl_fixed_to_int(to_y - from_y); in resize_grab_motion()
2637 float to_x, to_y; in desktop_surface_committed() local
2651 weston_view_to_global_float(shsurf->view, sx, sy, &to_x, &to_y); in desktop_surface_committed()
2653 y = shsurf->view->geometry.y + to_y - from_y; in desktop_surface_committed()
/third_party/weston/libweston/
Dcompositor.c1364 int from_x, int from_y, int *to_x, int *to_y) in weston_view_to_view_map() argument
1372 *to_y = round(y); in weston_view_to_view_map()
/third_party/chromium/patch/
D0001-cve.patch30604 + float to_x HB_UNUSED, float to_y HB_UNUSED,
30610 + float to_x HB_UNUSED, float to_y HB_UNUSED,
30617 + float to_x, float to_y,
30626 + (to_y + 2.f * control_y) / 3.f,
30627 + to_x, to_y);
30635 + float to_x HB_UNUSED, float to_y HB_UNUSED,
30805 -_move_to_nil (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSE…
30808 -_line_to_nil (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSE…
30812 - hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED,
30818 - hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED,
[all …]