Home
last modified time | relevance | path

Searched refs:flow_control (Results 1 – 25 of 1326) sorted by relevance

12345678910>>...54

/dports/emulators/citra/citra-ac98458e0/src/video_core/shader/
H A Dshader_interpreter.cpp64 switch (flow_control.op) { in RunInterpreter()
552 if (evaluate_condition(instr.flow_control)) { in RunInterpreter()
568 call(instr.flow_control.dest_offset, instr.flow_control.num_instructions, in RunInterpreter()
576 call(instr.flow_control.dest_offset, instr.flow_control.num_instructions, in RunInterpreter()
584 call(instr.flow_control.dest_offset, instr.flow_control.num_instructions, in RunInterpreter()
597 instr.flow_control.dest_offset + instr.flow_control.num_instructions, 0, in RunInterpreter()
600 call(instr.flow_control.dest_offset, instr.flow_control.num_instructions, in RunInterpreter()
601 instr.flow_control.dest_offset + instr.flow_control.num_instructions, 0, in RunInterpreter()
613 instr.flow_control.dest_offset + instr.flow_control.num_instructions, 0, in RunInterpreter()
616 call(instr.flow_control.dest_offset, instr.flow_control.num_instructions, in RunInterpreter()
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/src/video_core/shader/
H A Dshader_interpreter.cpp64 switch (flow_control.op) { in RunInterpreter()
552 if (evaluate_condition(instr.flow_control)) { in RunInterpreter()
568 call(instr.flow_control.dest_offset, instr.flow_control.num_instructions, in RunInterpreter()
576 call(instr.flow_control.dest_offset, instr.flow_control.num_instructions, in RunInterpreter()
584 call(instr.flow_control.dest_offset, instr.flow_control.num_instructions, in RunInterpreter()
597 instr.flow_control.dest_offset + instr.flow_control.num_instructions, 0, in RunInterpreter()
600 call(instr.flow_control.dest_offset, instr.flow_control.num_instructions, in RunInterpreter()
601 instr.flow_control.dest_offset + instr.flow_control.num_instructions, 0, in RunInterpreter()
613 instr.flow_control.dest_offset + instr.flow_control.num_instructions, 0, in RunInterpreter()
616 call(instr.flow_control.dest_offset, instr.flow_control.num_instructions, in RunInterpreter()
[all …]
/dports/emulators/citra/citra-ac98458e0/src/video_core/renderer_opengl/
H A Dgl_shader_decompiler.cpp141 labels.insert(instr.flow_control.dest_offset); in Scan()
175 if (instr.flow_control.num_instructions != 0) { in Scan()
188 Scan(instr.flow_control.dest_offset + instr.flow_control.num_instructions, end, in Scan()
300 switch (flow_control.op) { in EvaluateCondition()
309 if (flow_control.refx.Value() && flow_control.refy.Value()) { in EvaluateCondition()
311 } else if (!flow_control.refx.Value() && !flow_control.refy.Value()) { in EvaluateCondition()
664 condition = EvaluateCondition(instr.flow_control); in CompileInstr()
686 condition = EvaluateCondition(instr.flow_control); in CompileInstr()
729 instr.flow_control.dest_offset + instr.flow_control.num_instructions; in CompileInstr()
738 if (instr.flow_control.num_instructions != 0) { in CompileInstr()
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/src/video_core/renderer_opengl/
H A Dgl_shader_decompiler.cpp141 labels.insert(instr.flow_control.dest_offset); in Scan()
175 if (instr.flow_control.num_instructions != 0) { in Scan()
188 Scan(instr.flow_control.dest_offset + instr.flow_control.num_instructions, end, in Scan()
300 switch (flow_control.op) { in EvaluateCondition()
309 if (flow_control.refx.Value() && flow_control.refy.Value()) { in EvaluateCondition()
311 } else if (!flow_control.refx.Value() && !flow_control.refy.Value()) { in EvaluateCondition()
664 condition = EvaluateCondition(instr.flow_control); in CompileInstr()
686 condition = EvaluateCondition(instr.flow_control); in CompileInstr()
729 instr.flow_control.dest_offset + instr.flow_control.num_instructions; in CompileInstr()
738 if (instr.flow_control.num_instructions != 0) { in CompileInstr()
[all …]
/dports/www/domoticz/domoticz-2020.2/hardware/
H A DASyncSerial.h45 boost::asio::serial_port_base::flow_control opt_flow=
46 boost::asio::serial_port_base::flow_control(
47 boost::asio::serial_port_base::flow_control::none),
69 boost::asio::serial_port_base::flow_control opt_flow=
70 boost::asio::serial_port_base::flow_control(
71 boost::asio::serial_port_base::flow_control::none),
81 boost::asio::serial_port_base::flow_control opt_flow=
82 boost::asio::serial_port_base::flow_control(
83 boost::asio::serial_port_base::flow_control::none),
/dports/audio/supercollider/SuperCollider-3.11.0-Source/lang/LangPrimSource/
H A DPyrSerialPrim.cpp92 serial_port::flow_control::type flow_control { serial_port::flow_control::hardware }; member
117 setFlowControl(options.flow_control); in SerialPort()
165 void setFlowControl(serial_port::flow_control::type control);
243 if (control == serial_port::flow_control::hardware) { in setFlowControl()
249 if (control == serial_port::flow_control::hardware) { in setFlowControl()
259 m_port.set_option(serial_port::flow_control(control)); in setFlowControl()
306 using flow_control = serial_port::flow_control; in asFlowControlType() typedef
311 return flow_control::hardware; in asFlowControlType()
313 return flow_control::software; in asFlowControlType()
315 return flow_control::none; in asFlowControlType()
[all …]
/dports/textproc/mdbook-linkcheck/mdbook-linkcheck-0.7.6/cargo-crates/mdbook-0.4.13/tests/summary_md_files/
H A Drust_by_example.md43 - [Flow Control](flow_control.md)
44 - [if/else](flow_control/if_else.md)
45 - [loop](flow_control/loop.md)
46 - [Nesting and labels](flow_control/loop/nested.md)
48 - [while](flow_control/while.md)
49 - [for and range](flow_control/for.md)
50 - [match](flow_control/match.md)
56 - [Guards](flow_control/match/guard.md)
57 - [Binding](flow_control/match/binding.md)
58 - [if let](flow_control/if_let.md)
[all …]
/dports/textproc/mdbook/mdBook-0.4.13/tests/summary_md_files/
H A Drust_by_example.md43 - [Flow Control](flow_control.md)
44 - [if/else](flow_control/if_else.md)
45 - [loop](flow_control/loop.md)
46 - [Nesting and labels](flow_control/loop/nested.md)
48 - [while](flow_control/while.md)
49 - [for and range](flow_control/for.md)
50 - [match](flow_control/match.md)
56 - [Guards](flow_control/match/guard.md)
57 - [Binding](flow_control/match/binding.md)
58 - [if let](flow_control/if_let.md)
[all …]
/dports/lang/rust/rustc-1.58.1-src/vendor/mdbook/tests/summary_md_files/
H A Drust_by_example.md43 - [Flow Control](flow_control.md)
44 - [if/else](flow_control/if_else.md)
45 - [loop](flow_control/loop.md)
46 - [Nesting and labels](flow_control/loop/nested.md)
48 - [while](flow_control/while.md)
49 - [for and range](flow_control/for.md)
50 - [match](flow_control/match.md)
56 - [Guards](flow_control/match/guard.md)
57 - [Binding](flow_control/match/binding.md)
58 - [if let](flow_control/if_let.md)
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/testing/web-platform/tests/tools/pywebsocket/src/test/
H A Dtest_mux.py540 request.connection.put_bytes(flow_control)
550 request.connection.put_bytes(flow_control)
658 request.connection.put_bytes(flow_control)
692 request.connection.put_bytes(flow_control)
735 request.connection.put_bytes(flow_control)
744 request.connection.put_bytes(flow_control)
797 request.connection.put_bytes(flow_control)
809 request.connection.put_bytes(flow_control)
861 request.connection.put_bytes(flow_control)
916 request.connection.put_bytes(flow_control)
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/web-platform/tests/tools/pywebsocket/src/test/
H A Dtest_mux.py540 request.connection.put_bytes(flow_control)
550 request.connection.put_bytes(flow_control)
658 request.connection.put_bytes(flow_control)
692 request.connection.put_bytes(flow_control)
735 request.connection.put_bytes(flow_control)
744 request.connection.put_bytes(flow_control)
797 request.connection.put_bytes(flow_control)
809 request.connection.put_bytes(flow_control)
861 request.connection.put_bytes(flow_control)
916 request.connection.put_bytes(flow_control)
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/nfc/nfcmrvl/
H A Duart.c27 static unsigned int flow_control; variable
60 config->flow_control); in nfcmrvl_uart_nci_update_config()
91 pdata->flow_control = 1; in nfcmrvl_uart_parse_dt()
93 pdata->flow_control = 0; in nfcmrvl_uart_parse_dt()
130 config.flow_control = flow_control; in nfcmrvl_nci_uart_open()
225 module_param(flow_control, uint, 0);
226 MODULE_PARM_DESC(flow_control, "Tell if UART needs flow control at init.");
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/nfc/nfcmrvl/
H A Duart.c27 static unsigned int flow_control; variable
60 config->flow_control); in nfcmrvl_uart_nci_update_config()
91 pdata->flow_control = 1; in nfcmrvl_uart_parse_dt()
93 pdata->flow_control = 0; in nfcmrvl_uart_parse_dt()
130 config.flow_control = flow_control; in nfcmrvl_nci_uart_open()
225 module_param(flow_control, uint, 0);
226 MODULE_PARM_DESC(flow_control, "Tell if UART needs flow control at init.");
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/nfc/nfcmrvl/
H A Duart.c27 static unsigned int flow_control; variable
60 config->flow_control); in nfcmrvl_uart_nci_update_config()
91 pdata->flow_control = 1; in nfcmrvl_uart_parse_dt()
93 pdata->flow_control = 0; in nfcmrvl_uart_parse_dt()
130 config.flow_control = flow_control; in nfcmrvl_nci_uart_open()
225 module_param(flow_control, uint, 0);
226 MODULE_PARM_DESC(flow_control, "Tell if UART needs flow control at init.");
/dports/shells/ion/ion-a8872014dbce730ccd00aaa722397dc394a52bf4/src/lib/shell/
H A Dflow.rs677 let mut flow_control = Block::default(); in if_inside_match() localVariable
680 assert_eq!(flow_control.len(), 1); in if_inside_match()
684 assert_eq!(flow_control.len(), 2); in if_inside_match()
689 assert_eq!(flow_control.len(), 2); in if_inside_match()
693 assert_eq!(flow_control.len(), 3); in if_inside_match()
697 assert_eq!(flow_control.len(), 2); in if_inside_match()
701 assert_eq!(flow_control.len(), 0); in if_inside_match()
712 let mut flow_control = Block::default(); in statement_outside_case() localVariable
715 assert_eq!(flow_control.len(), 1); in statement_outside_case()
720 flow_control.clear(); in statement_outside_case()
[all …]
/dports/devel/google-cloud-cpp/google-cloud-cpp-1.21.0/google/cloud/pubsub/benchmarks/
H A Dendurance.cc236 flow_control.Received(m); in main()
259 std::ref(flow_control), task_id++}; in main()
310 auto const samples = flow_control.ClearSamples(); in main()
313 flow_control.Debug(std::cout); in main()
328 flow_control.Shutdown(); in main()
330 auto const sent_count = flow_control.SentCount(); in main()
334 auto const expected = flow_control.ExpectedCount(); in main()
338 flow_control.WaitReceivedCount(expected * p / 100); in main()
418 auto const samples = flow_control.ReceivedCount(); in ExperimentCompleted()
440 while (!ExperimentCompleted(config, flow_control, start)) { in PublisherTask()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/doc/rust-by-example/src/
H A DSUMMARY.md45 - [Flow of Control](flow_control.md)
46 - [if/else](flow_control/if_else.md)
47 - [loop](flow_control/loop.md)
48 - [Nesting and labels](flow_control/loop/nested.md)
50 - [while](flow_control/while.md)
51 - [for and range](flow_control/for.md)
52 - [match](flow_control/match.md)
58 - [Guards](flow_control/match/guard.md)
59 - [Binding](flow_control/match/binding.md)
60 - [if let](flow_control/if_let.md)
[all …]
/dports/emulators/citra/citra-ac98458e0/externals/nihstro/src/
H A Ddisassembler.cpp261 if (instr.flow_control.op != instr.flow_control.JustY) in main()
262 std::cout << ((!instr.flow_control.refx) ? "!" : " ") << "cc.x"; in main()
264 std::cout << ops[instr.flow_control.op]; in main()
266 if (instr.flow_control.op != instr.flow_control.JustX) in main()
267 std::cout << ((!instr.flow_control.refy) ? "!" : " ") << "cc.y"; in main()
271 std::cout << "b" << instr.flow_control.bool_uniform_id << " "; in main()
274 uint32_t target_addr = instr.flow_control.dest_offset; in main()
275 uint32_t target_addr_else = instr.flow_control.dest_offset; in main()
279 … << " aka \"" << shader_info.GetLabel(instr.flow_control.dest_offset) << "\""; in main()
282 … << " aka \"" << shader_info.GetLabel(instr.flow_control.dest_offset) << "\""; in main()
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/externals/nihstro/src/
H A Ddisassembler.cpp261 if (instr.flow_control.op != instr.flow_control.JustY) in main()
262 std::cout << ((!instr.flow_control.refx) ? "!" : " ") << "cc.x"; in main()
264 std::cout << ops[instr.flow_control.op]; in main()
266 if (instr.flow_control.op != instr.flow_control.JustX) in main()
267 std::cout << ((!instr.flow_control.refy) ? "!" : " ") << "cc.y"; in main()
271 std::cout << "b" << instr.flow_control.bool_uniform_id << " "; in main()
274 uint32_t target_addr = instr.flow_control.dest_offset; in main()
275 uint32_t target_addr_else = instr.flow_control.dest_offset; in main()
279 … << " aka \"" << shader_info.GetLabel(instr.flow_control.dest_offset) << "\""; in main()
282 … << " aka \"" << shader_info.GetLabel(instr.flow_control.dest_offset) << "\""; in main()
[all …]
/dports/devel/p5-Log-ger/Log-ger-0.038/lib/Log/ger/
H A DHeavy.pm156 my ($phase, $hook_args, $flow_control,
179 if (ref $flow_control eq 'CODE') {
180 last if $flow_control->($hook, $hook_res);
182 last if $flow_control;
207 my ($filter, $flow_control, $fltname) = @$hook_res;
210 $flow_control;
220 my ($formatter, $flow_control, $fmtname) = @$hook_res;
223 $flow_control;
238 my ($routine_name_rec, $flow_control) = @$hook_res;
243 $flow_control;
/dports/devel/grpc/grpc-1.42.0/src/core/ext/transport/chttp2/transport/
H A Dframe_window_update.cc98 s->flow_control->RecvUpdate(received_update); in grpc_chttp2_window_update_parser_parse()
101 s->flow_control->remote_window_delta() > in grpc_chttp2_window_update_parser_parse()
112 bool was_zero = t->flow_control->remote_window() <= 0; in grpc_chttp2_window_update_parser_parse()
113 t->flow_control->RecvUpdate(received_update); in grpc_chttp2_window_update_parser_parse()
114 bool is_zero = t->flow_control->remote_window() <= 0; in grpc_chttp2_window_update_parser_parse()
/dports/devel/pecl-grpc/grpc-1.42.0/src/core/ext/transport/chttp2/transport/
H A Dframe_window_update.cc98 s->flow_control->RecvUpdate(received_update); in grpc_chttp2_window_update_parser_parse()
101 s->flow_control->remote_window_delta() > in grpc_chttp2_window_update_parser_parse()
112 bool was_zero = t->flow_control->remote_window() <= 0; in grpc_chttp2_window_update_parser_parse()
113 t->flow_control->RecvUpdate(received_update); in grpc_chttp2_window_update_parser_parse()
114 bool is_zero = t->flow_control->remote_window() <= 0; in grpc_chttp2_window_update_parser_parse()
/dports/devel/py-grpcio/grpcio-1.43.0/src/core/ext/transport/chttp2/transport/
H A Dframe_window_update.cc98 s->flow_control->RecvUpdate(received_update); in grpc_chttp2_window_update_parser_parse()
101 s->flow_control->remote_window_delta() > in grpc_chttp2_window_update_parser_parse()
112 bool was_zero = t->flow_control->remote_window() <= 0; in grpc_chttp2_window_update_parser_parse()
113 t->flow_control->RecvUpdate(received_update); in grpc_chttp2_window_update_parser_parse()
114 bool is_zero = t->flow_control->remote_window() <= 0; in grpc_chttp2_window_update_parser_parse()
/dports/emulators/citra/citra-ac98458e0/src/citra_qt/debugger/graphics/
H A Dgraphics_vertex_shader.cpp243 << (4 * instr.flow_control.dest_offset) << ")"; in data()
250 if (instr.flow_control.op != instr.flow_control.JustY) { in data()
251 if (!instr.flow_control.refx) in data()
256 if (instr.flow_control.op == instr.flow_control.Or) { in data()
258 } else if (instr.flow_control.op == instr.flow_control.And) { in data()
262 if (instr.flow_control.op != instr.flow_control.JustX) { in data()
263 if (!instr.flow_control.refy) in data()
271 (instr.flow_control.num_instructions & 1) == 1) { in data()
280 << (4 * instr.flow_control.dest_offset); in data()
292 << (4 * instr.flow_control.dest_offset + in data()
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/src/citra_qt/debugger/graphics/
H A Dgraphics_vertex_shader.cpp243 << (4 * instr.flow_control.dest_offset) << ")"; in data()
250 if (instr.flow_control.op != instr.flow_control.JustY) { in data()
251 if (!instr.flow_control.refx) in data()
256 if (instr.flow_control.op == instr.flow_control.Or) { in data()
258 } else if (instr.flow_control.op == instr.flow_control.And) { in data()
262 if (instr.flow_control.op != instr.flow_control.JustX) { in data()
263 if (!instr.flow_control.refy) in data()
271 (instr.flow_control.num_instructions & 1) == 1) { in data()
280 << (4 * instr.flow_control.dest_offset); in data()
292 << (4 * instr.flow_control.dest_offset + in data()
[all …]

12345678910>>...54