Home
last modified time | relevance | path

Searched refs:template_index (Results 1 – 25 of 198) sorted by relevance

12345678

/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/recognition/src/
H A Ddotmod.cpp163 for (std::size_t template_index = 0; template_index < nr_templates; ++template_index) in detectTemplates() local
165 …const unsigned char * template_data = &(templates_[template_index].modalities[modality_index].feat… in detectTemplates()
169 responses[template_index] += 1.0f; in detectTemplates()
176 for (std::size_t template_index = 0; template_index < nr_templates; ++template_index) in detectTemplates() local
178 const float response = responses[template_index] * scaling_factor; in detectTemplates()
184 detection.template_id = template_index; in detectTemplates()
235 for (int template_index = 0; template_index < nr_templates; ++template_index) in serialize() local
236 templates_[template_index].serialize (stream); in serialize()
249 for (int template_index = 0; template_index < nr_templates; ++template_index) in deserialize() local
250 templates_[template_index].deserialize (stream); in deserialize()
H A Dlinemod.cpp215 for (std::size_t template_index = 0; template_index < templates_.size (); ++template_index) in matchTemplates() local
236 for (const auto &feature : templates_[template_index].features) in matchTemplates()
349 detection.template_id = static_cast<int> (template_index); in matchTemplates()
534 for (std::size_t template_index = 0; template_index < templates_.size (); ++template_index) in detectTemplates() local
784 detection.template_id = static_cast<int> (template_index); in detectTemplates()
1003 for (std::size_t template_index = 0; template_index < templates_.size (); ++template_index) in detectTemplatesSemiScaleInvariant() local
1347 for (int template_index = 0; template_index < nr_templates; ++template_index) in loadTemplates() local
1363 for (int template_index = 0; template_index < nr_templates; ++template_index) in serialize() local
1364 templates_[template_index].serialize (stream); in serialize()
1376 for (int template_index = 0; template_index < nr_templates; ++template_index) in deserialize() local
[all …]
/dports/cad/qelectrotech/qet-0.7.0/sources/titleblock/
H A Dtemplatelocationsaver.cpp48 int template_index = templates_ -> currentIndex(); in name() local
49 return(template_index ? templates_ -> currentText() : new_name_ -> text()); in name()
63 int template_index = templates_ -> findText(location.name()); in setLocation() local
64 if (template_index != -1) { in setLocation()
65 templates_ -> setCurrentIndex(template_index); in setLocation()
102 int template_index = templates_ -> currentIndex(); in updateNewName() local
103 new_name_ -> setEnabled(!template_index); in updateNewName()
H A Dtemplatelocationchooser.cpp62 int template_index = templates_ -> currentIndex(); in name() local
63 return(template_index != -1 ? templates_ -> currentText() : QString()); in name()
75 int template_index = templates_ -> findText(location.name()); in setLocation() local
76 if (template_index != -1) { in setLocation()
77 templates_ -> setCurrentIndex(template_index); in setLocation()
/dports/net-mgmt/routers2-extensions/routers2-v2.23/extras/targetnames/
H A DBER.pm470 $template_index = shift;
478 ++$template_index;
490 $template_index)
497 $template, $template_index)
511 $template, $template_index)
517 $template_index += 1;
525 $template, $template_index)
535 $template_index += 1;
557 $template, $template_index)
562 $template_index += 1;
[all …]
/dports/net-mgmt/routers2-extras/routers2-v2.23/extras/targetnames/
H A DBER.pm470 $template_index = shift;
478 ++$template_index;
490 $template_index)
497 $template, $template_index)
511 $template, $template_index)
517 $template_index += 1;
525 $template, $template_index)
535 $template_index += 1;
557 $template, $template_index)
562 $template_index += 1;
[all …]
/dports/net/rtg/rtg-0.7.5/etc/
H A DBER.pm586 $template_index = shift;
595 ++$template_index;
610 $template_index)
617 $template, $template_index)
631 $template, $template_index)
637 $template_index += 1;
647 $template, $template_index)
657 $template_index += 1;
679 $template, $template_index)
684 $template_index += 1;
[all …]
/dports/net-mgmt/p5-SNMP_Session/SNMP_Session-1.13/lib/
H A DBER.pm599 $template_index = shift;
608 ++$template_index;
623 $template_index)
629 $template, $template_index)
643 $template, $template_index)
649 $template_index += 1;
659 $template, $template_index)
669 $template_index += 1;
691 $template, $template_index)
696 $template_index += 1;
[all …]
/dports/devel/p5-Module-Setup/Module-Setup-0.09/lib/Module/Setup/
H A DFlavor.pm50 my $template = delete $args->{template_index}->{$key};
75 my %template_index;
86 $template_index{"$type - $tmpl->{$type}"} = $tmpl;
89 $template_index{'anthor - ' . $anthor_key_count++} = $tmpl;
94 template_index => \%template_index,
101 for my $tmpl (values %{ $args->{template_index} }) {
/dports/science/openbabel/openbabel-3.1.1/external/coordgen-master/coordgen/test/
H A Dtest_coordgen.cpp107 size_t template_index = 0; in BOOST_AUTO_TEST_CASE() local
109 if (no_match.count(template_index) > 0) { in BOOST_AUTO_TEST_CASE()
110 ++template_index; in BOOST_AUTO_TEST_CASE()
135 const bool matches_incorrectly = match_incorrectly.count(template_index) > 0; in BOOST_AUTO_TEST_CASE()
137 BOOST_CHECK_MESSAGE(any_rigid, "No template found for " << template_index); in BOOST_AUTO_TEST_CASE()
139 BOOST_CHECK_MESSAGE(all_rigid, "Not all atoms templated for " << template_index); in BOOST_AUTO_TEST_CASE()
142 ++template_index; in BOOST_AUTO_TEST_CASE()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/builtins/
H A Dbuiltins-error.cc92 Handle<Object> template_index = args.atOrUndefined(isolate, 1); in MakeGenericError() local
97 DCHECK(template_index->IsSmi()); in MakeGenericError()
100 isolate, constructor, MessageTemplateFromInt(Smi::ToInt(*template_index)), in MakeGenericError()
130 MessageTemplate template_index = MessageTemplate::kURIMalformed; in BUILTIN() local
131 return *ErrorUtils::MakeGenericError(isolate, constructor, template_index, in BUILTIN()
/dports/www/node10/node-v10.24.1/deps/v8/src/builtins/
H A Dbuiltins-error.cc92 Handle<Object> template_index = args.atOrUndefined(isolate, 1); in MakeGenericError() local
97 DCHECK(template_index->IsSmi()); in MakeGenericError()
101 Smi::ToInt(*template_index), arg0, in MakeGenericError()
131 const int template_index = MessageTemplate::kURIMalformed; in BUILTIN() local
134 ErrorUtils::MakeGenericError(isolate, constructor, template_index, in BUILTIN()
/dports/math/libpgmath/flang-d07daf3/tools/flang2/utils/ilitp/
H A Dilitp.cpp141 static int template_index = -1; variable
184 for (i = 1; i != template_index; ++i) { in get_template_expansion()
198 if (template_index == template_size) { in get_template_expansion()
228 if (template_index >= 0) { in get_input_line()
230 ++template_index; in get_input_line()
231 if (template_index > template_size) { in get_input_line()
235 template_index = -1; in get_input_line()
239 opcode_num = template_base_opcode_num + template_index; in get_input_line()
253 template_index = 0; in get_input_line()
267 template_index = 0; in get_input_line()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/runtime/
H A Druntime-internal.cc204 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
206 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
213 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
215 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
222 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
224 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
231 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
233 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
/dports/devel/libevtx/libevtx-20210525/libfwevt/
H A Dlibfwevt_provider.c3156 template_index++ ) in libfwevt_provider_read_templates()
3164 template_index, in libfwevt_provider_read_templates()
3179 template_index ); in libfwevt_provider_read_templates()
3197 template_index ); in libfwevt_provider_read_templates()
3241 template_index ); in libfwevt_provider_read_templates()
4000 int template_index, in libfwevt_provider_get_template() argument
4022 template_index, in libfwevt_provider_get_template()
4032 template_index ); in libfwevt_provider_get_template()
4098 template_index, in libfwevt_provider_get_template_by_offset()
4108 template_index ); in libfwevt_provider_get_template_by_offset()
[all …]
/dports/devel/libevt/libevt-20210424/libfwevt/
H A Dlibfwevt_provider.c3156 template_index++ ) in libfwevt_provider_read_templates()
3164 template_index, in libfwevt_provider_read_templates()
3179 template_index ); in libfwevt_provider_read_templates()
3197 template_index ); in libfwevt_provider_read_templates()
3241 template_index ); in libfwevt_provider_read_templates()
4000 int template_index, in libfwevt_provider_get_template() argument
4022 template_index, in libfwevt_provider_get_template()
4032 template_index ); in libfwevt_provider_get_template()
4098 template_index, in libfwevt_provider_get_template_by_offset()
4108 template_index ); in libfwevt_provider_get_template_by_offset()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/runtime/
H A Druntime-internal.cc204 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
206 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
214 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
215 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
240 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
242 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
249 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
251 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
/dports/graphics/py-plotly/plotly-4.14.3/plotly/io/
H A D_templates.py465 template_index = trace_type_indexes.get(trace.type, 0)
469 while len(template_traces) <= template_index:
474 template_trace = template_traces[template_index]
483 trace_type_indexes[trace.type] = template_index + 1
/dports/lang/v8/v8-9.6.180.12/src/runtime/
H A Druntime-internal.cc213 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
215 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
223 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
224 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
249 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
251 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
258 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
260 MessageTemplate message_template = MessageTemplateFromInt(template_index); in RUNTIME_FUNCTION()
/dports/science/coordgenlibs/coordgenlibs-3.0.0/test/
H A Dtest_coordgen.cpp154 size_t template_index = 0; in BOOST_AUTO_TEST_CASE() local
156 if (no_match.count(template_index) > 0) { in BOOST_AUTO_TEST_CASE()
157 ++template_index; in BOOST_AUTO_TEST_CASE()
182 const bool matches_incorrectly = match_incorrectly.count(template_index) > 0; in BOOST_AUTO_TEST_CASE()
184 BOOST_CHECK_MESSAGE(any_rigid, "No template found for " << template_index); in BOOST_AUTO_TEST_CASE()
186 BOOST_CHECK_MESSAGE(all_rigid, "Not all atoms templated for " << template_index); in BOOST_AUTO_TEST_CASE()
189 ++template_index; in BOOST_AUTO_TEST_CASE()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_dependency_descriptor_reader.cc201 size_t template_index = (frame_dependency_template_id_ + kMaxTemplates - in ReadFrameDependencyDefinition() local
205 if (template_index >= structure_->templates.size()) { in ReadFrameDependencyDefinition()
211 descriptor_->frame_dependencies = structure_->templates[template_index]; in ReadFrameDependencyDefinition()
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/rtp_rtcp/source/
H A Drtp_dependency_descriptor_reader.cc194 size_t template_index = in ReadFrameDependencyDefinition() local
199 if (template_index >= structure_->templates.size()) { in ReadFrameDependencyDefinition()
205 descriptor_->frame_dependencies = structure_->templates[template_index]; in ReadFrameDependencyDefinition()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_dependency_descriptor_reader.cc194 size_t template_index = in ReadFrameDependencyDefinition() local
199 if (template_index >= structure_->templates.size()) { in ReadFrameDependencyDefinition()
205 descriptor_->frame_dependencies = structure_->templates[template_index]; in ReadFrameDependencyDefinition()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/modules/rtp_rtcp/source/
H A Drtp_dependency_descriptor_reader.cc194 size_t template_index = in ReadFrameDependencyDefinition() local
199 if (template_index >= structure_->templates.size()) { in ReadFrameDependencyDefinition()
205 descriptor_->frame_dependencies = structure_->templates[template_index]; in ReadFrameDependencyDefinition()
/dports/www/node10/node-v10.24.1/deps/v8/src/runtime/
H A Druntime-internal.cc188 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
191 static_cast<MessageTemplate::Template>(template_index); in RUNTIME_FUNCTION()
198 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
201 static_cast<MessageTemplate::Template>(template_index); in RUNTIME_FUNCTION()
208 CONVERT_INT32_ARG_CHECKED(template_index, 0); in RUNTIME_FUNCTION()
211 static_cast<MessageTemplate::Template>(template_index); in RUNTIME_FUNCTION()

12345678