Home
last modified time | relevance | path

Searched refs:output_type (Results 251 – 275 of 5196) sorted by relevance

1...<<11121314151617181920>>...208

/dports/devel/caf/actor-framework-0.18.5/libcaf_core/caf/
H A Dstream_stage_driver.hpp28 using output_type = typename downstream_manager_type::output_type; typedef in caf::stream_stage_driver
31 using stream_type = stream<output_type>;
53 process(downstream<output_type>& out, std::vector<input_type>& batch)
/dports/devel/py-nbformat/nbformat-5.1.3/nbformat/v3/
H A Dnbbase.py45 def new_output(output_type, output_text=None, output_png=None, argument
52 output.output_type = str(output_type)
60 if output_type in {u'pyout', 'display_data'}:
63 if output_type != 'pyerr':
81 if output_type == u'pyout':
85 if output_type == u'pyerr':
93 if output_type == u'stream':
/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/generated_tests/templates/gen_intel_shader_integer_functions2_tests/
H A DsubtractSaturate.shader_test.mako17 % if output_type in {"uint", "int"}:
46 ${output_type} get_expected_result(uint i, uint j)
49 return ${output_type}(0);
56 % if output_type in {"uint", "int"}:
60 return ${output_type}((idx & 1u) == 0u ? data.x : data.y);
104 % if output_type in {"uint", "int"}:
133 ${output_type} get_expected_result(uint i, uint j)
136 return ${output_type}(0);
143 % if output_type in {"uint", "int"}:
147 return ${output_type}((idx & 1u) == 0u ? data.x : data.y);
[all …]
H A DaddSaturate.shader_test.mako19 % if output_type in {"uint", "int"}:
27 uniform ${output_type} expected[SUM_N_to_1(src.length())];
52 ${output_type} get_expected_result(uint i, uint j)
60 % if output_type in {"uint", "int"}:
64 return ${output_type}((idx & 1u) == 0u ? data.x : data.y);
98 % if output_type in {"uint", "int"}:
106 uniform ${output_type} expected[SUM_N_to_1(src.length())];
119 ${output_type} get_expected_result(uint i, uint j)
127 % if output_type in {"uint", "int"}:
131 return ${output_type}((idx & 1u) == 0u ? data.x : data.y);
[all …]
/dports/science/dynare/dynare-4.6.4/preprocessor/src/
H A DExprNode.cc976 if (isLatexOutput(output_type)) in writeOutput()
1003 …ams" << LEFT_ARRAY_SUBSCRIPT(output_type) << tsid + ARRAY_SUBSCRIPT_OFFSET(output_type) << RIGHT_A… in writeOutput()
1026 switch (output_type) in writeOutput()
1085 switch (output_type) in writeOutput()
1145 switch (output_type) in writeOutput()
2882 switch (output_type) in writeOutput()
4185 if (isCOutput(output_type)) in precedence()
4810 if (isCOutput(output_type) || isJuliaOutput(output_type)) in writeOutput()
6441 if (isCOutput(output_type)) in writeOutput()
7759 if (isCOutput(output_type)) in writeOutput()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/gn/tools/gn/
H A Dninja_target_writer.cc73 if (target->output_type() == Target::BUNDLE_DATA) { in RunAndWriteFile()
76 } else if (target->output_type() == Target::CREATE_BUNDLE) { in RunAndWriteFile()
79 } else if (target->output_type() == Target::COPY_FILES) { in RunAndWriteFile()
82 } else if (target->output_type() == Target::ACTION || in RunAndWriteFile()
83 target->output_type() == Target::ACTION_FOREACH) { in RunAndWriteFile()
86 } else if (target->output_type() == Target::GROUP) { in RunAndWriteFile()
89 } else if (target->output_type() == Target::GENERATED_FILE) { in RunAndWriteFile()
199 if (target_->output_type() == Target::ACTION || in WriteInputDepsStampAndGetDep()
200 target_->output_type() == Target::ACTION_FOREACH) in WriteInputDepsStampAndGetDep()
216 if (target_->output_type() == Target::ACTION) { in WriteInputDepsStampAndGetDep()
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/gn/src/gn/
H A Dninja_target_writer.cc72 if (target->output_type() == Target::BUNDLE_DATA) { in RunAndWriteFile()
75 } else if (target->output_type() == Target::CREATE_BUNDLE) { in RunAndWriteFile()
78 } else if (target->output_type() == Target::COPY_FILES) { in RunAndWriteFile()
81 } else if (target->output_type() == Target::ACTION || in RunAndWriteFile()
82 target->output_type() == Target::ACTION_FOREACH) { in RunAndWriteFile()
85 } else if (target->output_type() == Target::GROUP) { in RunAndWriteFile()
88 } else if (target->output_type() == Target::GENERATED_FILE) { in RunAndWriteFile()
204 if (target_->output_type() == Target::ACTION || in WriteInputDepsStampAndGetDep()
205 target_->output_type() == Target::ACTION_FOREACH) in WriteInputDepsStampAndGetDep()
221 if (target_->output_type() == Target::ACTION) { in WriteInputDepsStampAndGetDep()
/dports/science/ascent/ascent-0.7.1-66-gbcf2742a/src/ascent/python/ascent_jupyter_bridge/notebooks/
H A DUntitled.ipynb20 "output_type": "display_data"
24 "output_type": "stream",
52 "output_type": "display_data"
66 "output_type": "stream",
83 "output_type": "stream",
109 "output_type": "stream",
126 "output_type": "stream",
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@nteract/outputs/src/components/
H A Doutput.tsx89 const output_type = this.props.output.output_type;
111 if (childElement.props && childElement.props.output_type) {
113 childElement.props.output_type
115 ? childElement.props.output_type
116 : [childElement.props.output_type];
118 chosenOne = child_output_type.includes(output_type)
/dports/devel/py-nbformat/nbformat-5.1.3/nbformat/v2/
H A Dnbbase.py49 def new_output(output_type=None, output_text=None, output_png=None, argument
55 if output_type is not None:
56 output.output_type = str(output_type)
58 if output_type != 'pyerr':
76 if output_type == u'pyout':
80 if output_type == u'pyerr':
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/weston/src/protocol/
H A Dmeson.build56 foreach output_type: [ 'client-header', 'server-header', 'private-code' ]
57 if output_type == 'client-header' variable
59 elif output_type == 'server-header' variable
64 output_type = 'code' variable
70 '@0@ @1@'.format(base_file, output_type),
71 command: [ prog_scanner, output_type, '@INPUT@', '@OUTPUT@' ],
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/weston/src/protocol/
H A Dmeson.build56 foreach output_type: [ 'client-header', 'server-header', 'private-code' ]
57 if output_type == 'client-header' variable
59 elif output_type == 'server-header' variable
64 output_type = 'code' variable
70 '@0@ @1@'.format(base_file, output_type),
71 command: [ prog_scanner, output_type, '@INPUT@', '@OUTPUT@' ],
/dports/devel/onetbb/oneTBB-2021.4.0/include/oneapi/tbb/detail/
H A D_flow_graph_indexer_impl.h35 typename IndexerNodeBaseType::output_type o(K, v); in do_try_put()
91 typedef OutputType output_type;
110 typedef OutputType output_type;
112 typedef typename sender<output_type>::successor_type successor_type;
113 typedef indexer_node_FE<InputTuple, output_type,StructTypes> input_ports_type;
119 typedef indexer_node_base<InputTuple,output_type,StructTypes> class_type;
125 output_type const *my_arg;
129 indexer_node_base_operation(const output_type* e, op_type t) :
203 broadcast_cache<output_type, null_rw_mutex> my_successors;
332 typedef typename input_types<N, OutputTuple>::type output_type;
[all …]
/dports/math/stanmath/math-4.2.0/lib/tbb_2020.3/include/tbb/internal/
H A D_flow_graph_node_impl.h424 typedef Output output_type; typedef
458 output_type apply_body_impl( const input_type& i) { in apply_body_impl()
462 output_type v = (*my_body)(i); in apply_body_impl()
469 output_type v = apply_body_impl(i); in apply_body_impl_bypass()
760 typedef Output output_type;
821 output_type v = (*my_body)( continue_msg() );
858 typedef Output output_type;
927 typedef Output output_type;
928 typedef function_output<output_type> base_type;
934 bool try_put(const output_type &i) {
[all …]
H A D_flow_graph_indexer_impl.h35 typename IndexerNodeBaseType::output_type o(K, v); in do_try_put()
156 typedef OutputType output_type;
175 typedef OutputType output_type;
177 typedef typename sender<output_type>::successor_type successor_type;
178 typedef indexer_node_FE<InputTuple, output_type,StructTypes> input_ports_type;
192 typedef indexer_node_base<InputTuple,output_type,StructTypes> class_type;
198 output_type const *my_arg;
206 indexer_node_base_operation(const output_type* e, op_type t) :
330 broadcast_cache<output_type, null_rw_mutex> my_successors;
459 typedef typename input_types<N, OutputTuple>::type output_type;
[all …]
/dports/devel/tbb/oneTBB-2020.3/include/tbb/internal/
H A D_flow_graph_node_impl.h424 typedef Output output_type; typedef
458 output_type apply_body_impl( const input_type& i) { in apply_body_impl()
462 output_type v = (*my_body)(i); in apply_body_impl()
469 output_type v = apply_body_impl(i); in apply_body_impl_bypass()
760 typedef Output output_type;
821 output_type v = (*my_body)( continue_msg() );
858 typedef Output output_type;
927 typedef Output output_type;
928 typedef function_output<output_type> base_type;
934 bool try_put(const output_type &i) {
[all …]
/dports/devel/taskflow/taskflow-3.2.0/3rd-party/tbb/include/tbb/internal/
H A D_flow_graph_node_impl.h424 typedef Output output_type; typedef
458 output_type apply_body_impl( const input_type& i) { in apply_body_impl()
462 output_type v = (*my_body)(i); in apply_body_impl()
469 output_type v = apply_body_impl(i); in apply_body_impl_bypass()
760 typedef Output output_type;
821 output_type v = (*my_body)( continue_msg() );
858 typedef Output output_type;
927 typedef Output output_type;
928 typedef function_output<output_type> base_type;
934 bool try_put(const output_type &i) {
[all …]
/dports/math/polymake/polymake-4.5/demo/
H A Dpolynomials_tutorial.ipynb61 "output_type": "execute_result"
111 "output_type": "execute_result"
141 "output_type": "execute_result"
168 "output_type": "execute_result"
197 "output_type": "execute_result"
231 "output_type": "execute_result"
249 "output_type": "display_data"
270 "output_type": "execute_result"
287 "output_type": "display_data"
557 "output_type": "display_data"
[all …]
/dports/devel/ipython/ipython-7.29.0/examples/IPython Kernel/
H A DUpdating Displays.ipynb43 "output_type": "display_data"
53 "output_type": "execute_result"
81 "output_type": "display_data"
125 "output_type": "display_data"
135 "output_type": "execute_result"
163 "output_type": "display_data"
182 "output_type": "display_data"
232 "output_type": "display_data"
264 "output_type": "display_data"
300 "output_type": "display_data"
/dports/devel/ipython5/ipython-5.10.0/examples/IPython Kernel/
H A DUpdating Displays.ipynb43 "output_type": "display_data"
53 "output_type": "execute_result"
81 "output_type": "display_data"
125 "output_type": "display_data"
135 "output_type": "execute_result"
163 "output_type": "display_data"
182 "output_type": "display_data"
232 "output_type": "display_data"
264 "output_type": "display_data"
300 "output_type": "display_data"
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/modules/audio_coding/neteq/
H A Dneteq_external_decoder_unittest.cc258 virtual void UpdateState(AudioFrame::SpeechType output_type) { in UpdateState() argument
261 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
267 if (output_type == AudioFrame::kPLC) { in UpdateState()
273 if (output_type == AudioFrame::kPLCCNG) { in UpdateState()
275 } else if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
281 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
376 void UpdateState(AudioFrame::SpeechType output_type) override { in UpdateState() argument
379 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
385 if (output_type == AudioFrame::kPLC) { in UpdateState()
391 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/audio_coding/neteq/
H A Dneteq_external_decoder_unittest.cc256 virtual void UpdateState(AudioFrame::SpeechType output_type) { in UpdateState() argument
259 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
265 if (output_type == AudioFrame::kPLC) { in UpdateState()
271 if (output_type == AudioFrame::kPLCCNG) { in UpdateState()
273 } else if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
279 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
373 void UpdateState(AudioFrame::SpeechType output_type) override { in UpdateState() argument
376 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
382 if (output_type == AudioFrame::kPLC) { in UpdateState()
388 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/modules/audio_coding/neteq/
H A Dneteq_external_decoder_unittest.cc258 virtual void UpdateState(AudioFrame::SpeechType output_type) { in UpdateState() argument
261 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
267 if (output_type == AudioFrame::kPLC) { in UpdateState()
273 if (output_type == AudioFrame::kPLCCNG) { in UpdateState()
275 } else if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
281 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
376 void UpdateState(AudioFrame::SpeechType output_type) override { in UpdateState() argument
379 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
385 if (output_type == AudioFrame::kPLC) { in UpdateState()
391 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/modules/audio_coding/neteq/
H A Dneteq_external_decoder_unittest.cc258 virtual void UpdateState(AudioFrame::SpeechType output_type) { in UpdateState() argument
261 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
267 if (output_type == AudioFrame::kPLC) { in UpdateState()
273 if (output_type == AudioFrame::kPLCCNG) { in UpdateState()
275 } else if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
281 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
376 void UpdateState(AudioFrame::SpeechType output_type) override { in UpdateState() argument
379 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
385 if (output_type == AudioFrame::kPLC) { in UpdateState()
391 if (output_type == AudioFrame::kNormalSpeech) { in UpdateState()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/tbb-2018_U2/include/tbb/internal/
H A D_flow_graph_indexer_impl.h39 typename IndexerNodeBaseType::output_type o(K, v); in do_try_put()
160 typedef OutputType output_type;
179 typedef OutputType output_type;
181 typedef typename sender<output_type>::successor_type successor_type;
182 typedef indexer_node_FE<InputTuple, output_type,StructTypes> input_ports_type;
196 typedef indexer_node_base<InputTuple,output_type,StructTypes> class_type;
202 output_type const *my_arg;
210 indexer_node_base_operation(const output_type* e, op_type t) :
334 broadcast_cache<output_type, null_rw_mutex> my_successors;
463 typedef typename input_types<N, OutputTuple>::type output_type;
[all …]

1...<<11121314151617181920>>...208