Home
last modified time | relevance | path

Searched refs:funcs2 (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavutil/
Deval.h54 … const char * const *func2_names, double (* const *funcs2)(void *, double, double),
77 const char * const *func2_names, double (* const *funcs2)(void *, double, double),
Deval.c51 double (* const *funcs2)(void *, double a, double b); // NULL terminated member
489 d->a.func2 = p->funcs2[i]; in parse_primary()
688 const char * const *func2_names, double (* const *funcs2)(void *, double, double), in av_expr_parse()
711 p.funcs2 = funcs2; in av_expr_parse()
779 … const char * const *func2_names, double (* const *funcs2)(void *, double, double), in av_expr_parse_and_eval()
783 …int ret = av_expr_parse(&e, s, const_names, func1_names, funcs1, func2_names, funcs2, log_offset, … in av_expr_parse_and_eval()
/third_party/skia/third_party/externals/harfbuzz/test/api/
Dtest-draw.c164 static hb_draw_funcs_t *funcs2; /* this one translates quadratic calls to cubic ones */ variable
202 g_assert (hb_font_draw_glyph (font, 3, funcs2, &user_data)); in test_hb_draw_glyf()
914 funcs2 = hb_draw_funcs_create (); in main()
915 hb_draw_funcs_set_move_to_func (funcs2, (hb_draw_move_to_func_t) move_to); in main()
916 hb_draw_funcs_set_line_to_func (funcs2, (hb_draw_line_to_func_t) line_to); in main()
917 hb_draw_funcs_set_cubic_to_func (funcs2, (hb_draw_cubic_to_func_t) cubic_to); in main()
918 hb_draw_funcs_set_close_path_func (funcs2, (hb_draw_close_path_func_t) close_path); in main()
919 hb_draw_funcs_make_immutable (funcs2); in main()
937 hb_draw_funcs_destroy (funcs2); in main()
/third_party/harfbuzz/test/api/
Dtest-draw.c164 static hb_draw_funcs_t *funcs2; /* this one translates quadratic calls to cubic ones */ variable
202 g_assert (hb_font_draw_glyph (font, 3, funcs2, &user_data)); in test_hb_draw_glyf()
914 funcs2 = hb_draw_funcs_create (); in main()
915 hb_draw_funcs_set_move_to_func (funcs2, (hb_draw_move_to_func_t) move_to); in main()
916 hb_draw_funcs_set_line_to_func (funcs2, (hb_draw_line_to_func_t) line_to); in main()
917 hb_draw_funcs_set_cubic_to_func (funcs2, (hb_draw_cubic_to_func_t) cubic_to); in main()
918 hb_draw_funcs_set_close_path_func (funcs2, (hb_draw_close_path_func_t) close_path); in main()
919 hb_draw_funcs_make_immutable (funcs2); in main()
937 hb_draw_funcs_destroy (funcs2); in main()
/third_party/chromium/patch/
D0001-cve.patch44755 @@ -166,7 +182,7 @@ static hb_draw_funcs_t *funcs2; /* this one translates quadratic calls to cubic
44796 - g_assert (hb_font_draw_glyph (font, 3, funcs2, &user_data));
44798 + hb_font_get_glyph_shape (font, 3, funcs2, &draw_data);
45607 funcs2 = hb_draw_funcs_create ();
45608 - hb_draw_funcs_set_move_to_func (funcs2, (hb_draw_move_to_func_t) move_to);
45609 - hb_draw_funcs_set_line_to_func (funcs2, (hb_draw_line_to_func_t) line_to);
45610 - hb_draw_funcs_set_cubic_to_func (funcs2, (hb_draw_cubic_to_func_t) cubic_to);
45611 - hb_draw_funcs_set_close_path_func (funcs2, (hb_draw_close_path_func_t) close_path);
45612 + hb_draw_funcs_set_move_to_func (funcs2, (hb_draw_move_to_func_t) move_to, NULL, NULL);
45613 + hb_draw_funcs_set_line_to_func (funcs2, (hb_draw_line_to_func_t) line_to, NULL, NULL);
[all …]