Home
last modified time | relevance | path

Searched refs:to_x (Results 1 – 22 of 22) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-draw.hh66 float to_x, float to_y) in emit_move_to()
68 to_x, to_y, in emit_move_to()
71 float to_x, float to_y) in emit_line_to()
73 to_x, to_y, in emit_line_to()
77 float to_x, float to_y) in emit_quadratic_to()
80 to_x, to_y, in emit_quadratic_to()
85 float to_x, float to_y) in emit_cubic_to()
89 to_x, to_y, in emit_cubic_to()
97 float to_x, float to_y) in move_to()
100 st.current_x = to_x; in move_to()
[all …]
Dhb-draw.cc43 float to_x HB_UNUSED, float to_y HB_UNUSED, in hb_draw_move_to_nil()
49 float to_x HB_UNUSED, float to_y HB_UNUSED, in hb_draw_line_to_nil()
56 float to_x, float to_y, in hb_draw_quadratic_to_nil() argument
63 (to_x + 2.f * control_x) * HB_ONE_THIRD, in hb_draw_quadratic_to_nil()
65 to_x, to_y); in hb_draw_quadratic_to_nil()
74 float to_x HB_UNUSED, float to_y HB_UNUSED, in hb_draw_cubic_to_nil()
298 float to_x, float to_y) in hb_draw_move_to() argument
301 to_x, to_y); in hb_draw_move_to()
319 float to_x, float to_y) in hb_draw_line_to() argument
322 to_x, to_y); in hb_draw_line_to()
[all …]
Dhb-draw.h109 float to_x, float to_y,
129 float to_x, float to_y,
152 float to_x, float to_y,
178 float to_x, float to_y,
298 float to_x, float to_y);
303 float to_x, float to_y);
309 float to_x, float to_y);
316 float to_x, float to_y);
Dmain.cc142 float to_x, float to_y, in move_to() argument
145 fprintf (draw_data->f, "M%g,%g", to_x, draw_data->ascender - to_y); in move_to()
151 float to_x, float to_y, in line_to() argument
154 fprintf (draw_data->f, "L%g,%g", to_x, draw_data->ascender - to_y); in line_to()
161 float to_x, float to_y, in quadratic_to() argument
165 to_x, draw_data->ascender - to_y); in quadratic_to()
173 float to_x, float to_y, in cubic_to() argument
178 to_x, draw_data->ascender - to_y); in cubic_to()
Dhb-font.cc528 float to_x, float to_y, in hb_draw_move_to_default() argument
537 x_scale * to_x + slant * to_y, y_scale * to_y); in hb_draw_move_to_default()
543 float to_x, float to_y, in hb_draw_line_to_default() argument
555 x_scale * to_x + slant * to_y, y_scale * to_y); in hb_draw_line_to_default()
562 float to_x, float to_y, in hb_draw_quadratic_to_default() argument
575 x_scale * to_x + slant * to_y, y_scale * to_y); in hb_draw_quadratic_to_default()
583 float to_x, float to_y, in hb_draw_cubic_to_default() argument
597 x_scale * to_x + slant * to_y, y_scale * to_y); in hb_draw_cubic_to_default()
/external/harfbuzz_ng/test/fuzzing/
Dhb-draw-fuzzer.cc21 float to_x, float to_y, in _move_to() argument
26 draw_data->path_start_x = draw_data->path_last_x = to_x; in _move_to()
33 float to_x, float to_y, in _line_to() argument
39 draw_data->path_last_x = to_x; in _line_to()
47 float to_x, float to_y, in _quadratic_to() argument
53 draw_data->path_last_x = to_x; in _quadratic_to()
62 float to_x, float to_y, in _cubic_to() argument
68 draw_data->path_last_x = to_x; in _cubic_to()
/external/capstone/bindings/python/
Dtest_systemz.py8 from xprint import to_x, to_hex
35 print("\t\toperands[%u].type: IMM = 0x%s" % (c, to_x(i.imm)))
46 % (c, to_x(i.mem.length)))
49 % (c, to_x(i.mem.disp)))
Dtest_tms320c64x.py8 from xprint import to_x, to_hex, to_x_32
33 print("\t\toperands[%u].type: IMM = 0x%s" % (c, to_x(i.imm)))
42 % (c, to_x(i.mem.disp)))
46 % (c, to_x(i.mem.disp)))
Dtest_mos65xx.py7 from xprint import to_hex, to_x
46 print("\t\toperands[%u].type: IMM = 0x%s" % (c, to_x(i.imm)))
48 print("\t\toperands[%u].type: MEM = 0x%s" % (c, to_x(i.mem)))
Dtest_xcore.py8 from xprint import to_x, to_hex
33 print("\t\toperands[%u].type: IMM = 0x%s" % (c, to_x(i.imm)))
44 % (c, to_x(i.mem.disp)))
Dtest_mips.py7 from xprint import to_hex, to_x
39 print("\t\toperands[%u].type: IMM = 0x%s" % (c, to_x(i.imm)))
47 % (c, to_x(i.mem.disp)))
Dtest_arm64.py8 from xprint import to_hex, to_x
34 print("\t\toperands[%u].type: IMM = 0x%s" % (c, to_x(i.imm)))
49 % (c, to_x(i.mem.disp)))
Dtest_x86.py7 from xprint import to_hex, to_x, to_x_32
200 print("\t\timms[%u]: 0x%s" % (i + 1, to_x(op.imm)))
214 print("\t\toperands[%u].type: IMM = 0x%s" % (c, to_x(i.imm)))
226 print("\t\t\toperands[%u].mem.disp: 0x%s" % (c, to_x(i.mem.disp)))
Dxprint.py29 def to_x(s): function
Dtest_m68k.py7 from xprint import to_hex, to_x
/external/harfbuzz_ng/util/
Dhelper-cairo-user.hh41 float to_x, float to_y, in move_to() argument
45 (double) to_x, (double) to_y); in move_to()
52 float to_x, float to_y, in line_to() argument
56 (double) to_x, (double) to_y); in line_to()
65 float to_x, float to_y, in cubic_to() argument
71 (double) to_x, (double) to_y); in cubic_to()
/external/tflite-support/tensorflow_lite_support/cc/task/vision/utils/
Dframe_buffer_utils.cc135 int* to_x, int* to_y) { in RotateCoordinates() argument
138 *to_x = from_x; in RotateCoordinates()
142 *to_x = from_y; in RotateCoordinates()
146 *to_x = frame_dimension.width - from_x - 1; in RotateCoordinates()
150 *to_x = frame_dimension.height - from_y - 1; in RotateCoordinates()
220 FrameBuffer::Dimension from_dimension, int* to_x, in OrientCoordinates() argument
222 *to_x = from_x; in OrientCoordinates()
228 to_x, to_y); in OrientCoordinates()
239 *to_x = to_dimension.width - *to_x - 1; in OrientCoordinates()
Dframe_buffer_utils.h59 FrameBuffer::Dimension from_dimension, int* to_x,
/external/tensorflow/tensorflow/core/framework/
Dbounds_check.h48 auto *to_x = reinterpret_cast<const volatile T *>(&x); in SubtleMustCopy() local
49 return *to_x; in SubtleMustCopy()
/external/harfbuzz_ng/test/api/
Dtest-draw.c104 float to_x, float to_y, in move_to() argument
110 draw_data->consumed += _hb_itoa (to_x, draw_data->str + draw_data->consumed); in move_to()
118 float to_x, float to_y, in line_to() argument
123 draw_data->consumed += _hb_itoa (to_x, draw_data->str + draw_data->consumed); in line_to()
132 float to_x, float to_y, in quadratic_to() argument
142 draw_data->consumed += _hb_itoa (to_x, draw_data->str + draw_data->consumed); in quadratic_to()
152 float to_x, float to_y, in cubic_to() argument
165 draw_data->consumed += _hb_itoa (to_x, draw_data->str + draw_data->consumed); in cubic_to()
/external/freetype/src/smooth/
Dftgrays.c734 gray_render_line( RAS_ARG_ TPos to_x, in gray_render_line() argument
756 gray_render_scanline( RAS_VAR_ ey1, ras.x, fy1, to_x, fy2 ); in gray_render_line()
760 dx = to_x - ras.x; in gray_render_line()
858 to_x, fy2 ); in gray_render_line()
861 ras.x = to_x; in gray_render_line()
872 gray_render_line( RAS_ARG_ TPos to_x, in gray_render_line() argument
889 ex2 = TRUNC( to_x ); in gray_render_line()
894 dx = to_x - ras.x; in gray_render_line()
987 fx2 = FRACT( to_x ); in gray_render_line()
993 ras.x = to_x; in gray_render_line()
/external/AFLplusplus/src/
Dafl-fuzz-redqueen.c2067 u32 to_0 = 0, to_x = 0, to_slash = 0, to_up = 0; local
2114 if (repl[1] == 'x' || repl[1] == 'X') { to_x = 1; }
2208 to_slash, to_x, from_0, from_slash, from_x);
2244 if (to_slash + to_x + to_0 == 2) {