Searched refs:cmd (Results 1 - 25 of 318) sorted by path

1234567891011>>

/haiku/3rdparty/kallisti5/
H A Dconfigure.py85 def cmdrun(cmd):
86 return subprocess.check_output(cmd).decode(sys.stdout.encoding)
/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php505 $cmd = ''; variable
507 $cmd .= "QEMU_AUDIO_DRV=twolame ";
508 //$cmd .= "QEMU_TWOLAME_SAMPLES=" . 4096 . " ";
509 $cmd .= "QEMU_TWOLAME_PORT=" . audio_port() . " ";
511 $cmd .= QEMU_BIN . " " . QEMU_ARGS;
513 $cmd .= " -smp " . $cpucount;
515 $cmd .= " -soundhw hda";
518 $cmd .= " -serial telnet::";
519 $cmd .= (SERIALPORTBASE + qemu_slot());
520 $cmd
552 $cmd = "(PID=`cat " . $pidfile . "`; " . variable
[all...]
/haiku/headers/cpp/
H A DPlotFile.h51 PlotFile& cmd(char c);
/haiku/headers/libs/agg/
H A Dagg_basics.h524 unsigned cmd; member in struct:agg::vertex_base
526 vertex_base(T x_, T y_, unsigned cmd_) : x(x_), y(y_), cmd(cmd_) {}
H A Dagg_bounding_rect.h46 unsigned cmd; local
47 while(!is_stop(cmd = vs.vertex(&x, &y)))
49 if(is_vertex(cmd))
88 unsigned cmd; local
89 while(!is_stop(cmd = vs.vertex(&x, &y)))
91 if(is_vertex(cmd))
H A Dagg_conv_adaptor_vcgen.h91 unsigned cmd = path_cmd_stop; local
111 cmd = m_source->vertex(x, y);
112 if(is_vertex(cmd))
114 m_last_cmd = cmd;
115 if(is_move_to(cmd))
121 m_generator.add_vertex(*x, *y, cmd);
126 if(is_stop(cmd))
131 if(is_end_poly(cmd))
133 m_generator.add_vertex(*x, *y, cmd);
142 cmd
[all...]
H A Dagg_conv_adaptor_vpgen.h69 unsigned cmd = path_cmd_stop; local
72 cmd = m_vpgen.vertex(x, y);
73 if(!is_stop(cmd)) break;
79 cmd = m_poly_flags;
97 cmd = m_source->vertex(&tx, &ty);
98 if(is_vertex(cmd))
100 if(is_move_to(cmd))
124 if(is_end_poly(cmd))
126 m_poly_flags = cmd;
127 if(is_closed(cmd) || m_vpge
[all...]
H A Dagg_conv_close_polygon.h64 unsigned cmd = path_cmd_stop; local
71 cmd = m_cmd[m_vertex];
76 cmd = m_source->vertex(x, y);
78 if(is_end_poly(cmd))
80 cmd |= path_flags_close;
84 if(is_stop(cmd))
97 if(is_move_to(cmd))
106 m_cmd[1] = cmd;
114 if(is_vertex(cmd))
120 return cmd;
[all...]
H A Dagg_conv_concat.h44 unsigned cmd; local
47 cmd = m_source1->vertex(x, y);
48 if(!is_stop(cmd)) return cmd;
53 cmd = m_source2->vertex(x, y);
54 if(!is_stop(cmd)) return cmd;
H A Dagg_conv_curve.h165 unsigned cmd = m_source->vertex(x, y); local
166 switch(cmd)
180 cmd = path_cmd_line_to;
197 cmd = path_cmd_line_to;
202 return cmd;
H A Dagg_conv_marker.h89 unsigned cmd = path_cmd_move_to; local
92 while(!is_stop(cmd))
99 cmd = path_cmd_stop;
126 cmd = m_marker_shapes->vertex(x, y);
127 if(is_stop(cmd))
129 cmd = path_cmd_move_to;
134 return cmd;
137 cmd = path_cmd_stop;
141 return cmd;
H A Dagg_conv_transform.h43 unsigned cmd = m_source->vertex(x, y); local
44 if(is_vertex(cmd))
48 return cmd;
H A Dagg_conv_unclose_polygon.h37 unsigned cmd = m_source->vertex(x, y); local
38 if(is_end_poly(cmd)) cmd &= ~path_flags_close;
39 return cmd;
H A Dagg_path_length.h34 unsigned cmd; local
36 while(!is_stop(cmd = vs.vertex(&x2, &y2)))
38 if(is_vertex(cmd))
40 if(first || is_move_to(cmd))
55 if(is_close(cmd) && !first)
H A Dagg_path_storage.h54 void add_vertex(double x, double y, unsigned cmd);
56 void modify_vertex(unsigned idx, double x, double y, unsigned cmd);
57 void modify_command(unsigned idx, unsigned cmd);
148 unsigned cmd = v.vertex(i, &x, &y); local
149 add_vertex(x, y, cmd);
164 unsigned cmd)
167 *storage_ptrs(&coord_ptr) = (int8u)cmd;
187 unsigned cmd)
194 m_cmd_blocks[block][offset] = (int8u)cmd;
200 unsigned cmd)
163 add_vertex(double x, double y, unsigned cmd) argument
185 modify_vertex(unsigned idx, double x, double y, unsigned cmd) argument
199 modify_command(unsigned idx, unsigned cmd) argument
218 int8u cmd = m_cmd_blocks[b1][o1]; local
724 unsigned cmd; local
739 unsigned cmd; local
987 unsigned cmd = m_vertices.prev_vertex(&x_ctrl, &y_ctrl); local
1046 unsigned cmd = prev_vertex(&x_ctrl1, &y_ctrl1); local
1146 modify_vertex(unsigned idx, double x, double y, unsigned cmd) argument
1153 modify_command(unsigned idx, unsigned cmd) argument
1268 unsigned cmd; local
1324 unsigned cmd = m_vertices.vertex(i, &x, &y); local
1341 unsigned cmd = m_vertices.vertex(i, &x, &y); local
1363 add_vertex(double x, double y, unsigned cmd) argument
1377 modify_vertex(unsigned idx, double x, double y, unsigned cmd) argument
1385 modify_command(unsigned idx, unsigned cmd) argument
[all...]
H A Dagg_path_storage_integer.h153 unsigned cmd = m_storage[m_vertex_idx].vertex(x, y); local
154 if(is_move_to(cmd) && !m_closed)
163 return cmd;
268 unsigned cmd = v.vertex(x, y, m_dx, m_dy, m_scale); local
269 if(is_move_to(cmd) && m_vertices > 2)
278 return cmd;
H A Dagg_rasterizer_compound_aa.h135 void add_vertex(double x, double y, unsigned cmd);
147 unsigned cmd; local
150 while(!is_stop(cmd = vs.vertex(&x, &y)))
152 add_vertex(x, y, cmd);
387 void rasterizer_compound_aa<Clip>::add_vertex(double x, double y, unsigned cmd) argument
389 if(is_move_to(cmd))
394 if(is_vertex(cmd))
399 if(is_close(cmd))
H A Dagg_rasterizer_outline.h72 void add_vertex(double x, double y, unsigned cmd) argument
74 if(is_move_to(cmd))
80 if(is_end_poly(cmd))
82 if(is_closed(cmd)) close();
99 unsigned cmd; local
101 while(!is_stop(cmd = vs.vertex(&x, &y)))
103 add_vertex(x, y, cmd);
H A Dagg_rasterizer_outline_aa.h140 void add_vertex(double x, double y, unsigned cmd) argument
142 if(is_move_to(cmd))
149 if(is_end_poly(cmd))
151 render(is_closed(cmd));
152 if(is_closed(cmd))
171 unsigned cmd; local
173 while(!is_stop(cmd = vs.vertex(&x, &y)))
175 add_vertex(x, y, cmd);
H A Dagg_rasterizer_scanline_aa.h181 void add_vertex(double x, double y, unsigned cmd);
193 unsigned cmd; local
196 while(!is_stop(cmd = vs.vertex(&x, &y)))
198 add_vertex(x, y, cmd);
411 void rasterizer_scanline_aa<Clip>::add_vertex(double x, double y, unsigned cmd) argument
413 if(is_move_to(cmd))
418 if(is_vertex(cmd))
423 if(is_close(cmd))
H A Dagg_trans_double_path.h70 unsigned cmd; local
73 while(!is_stop(cmd = vs1.vertex(&x, &y)))
75 if(is_move_to(cmd))
81 if(is_vertex(cmd))
89 while(!is_stop(cmd = vs2.vertex(&x, &y)))
91 if(is_move_to(cmd))
97 if(is_vertex(cmd))
H A Dagg_trans_single_path.h63 unsigned cmd; local
65 while(!is_stop(cmd = vs.vertex(&x, &y)))
67 if(is_move_to(cmd))
73 if(is_vertex(cmd))
H A Dagg_vcgen_bspline.h49 void add_vertex(double x, double y, unsigned cmd);
H A Dagg_vcgen_contour.h70 void add_vertex(double x, double y, unsigned cmd);
H A Dagg_vcgen_dash.h61 void add_vertex(double x, double y, unsigned cmd);

Completed in 105 milliseconds

1234567891011>>