Home
last modified time | relevance | path

Searched refs:ifst (Results 1 – 25 of 582) sorted by relevance

12345678910>>...24

/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/gonum.org/v1/gonum/lapack/gonum/
H A Ddtrexc.go58 case (ifst < 0 || n <= ifst) && n > 0:
66 return ifst, ilst, true
80 return ifst, ilst, true
85 if ifst > 0 && t[ifst*ldt+ifst-1] != 0 {
86 ifst--
89 if ifst+1 < n && t[(ifst+1)*ldt+ifst] != 0 {
106 case ifst == ilst:
107 return ifst, ilst, true
109 case ifst < ilst:
117 here := ifst
[all …]
/dports/www/carbonapi/carbonapi-0.14.1/vendor/gonum.org/v1/gonum/lapack/gonum/
H A Ddtrexc.go58 case (ifst < 0 || n <= ifst) && n > 0:
66 return ifst, ilst, true
80 return ifst, ilst, true
85 if ifst > 0 && t[ifst*ldt+ifst-1] != 0 {
86 ifst--
89 if ifst+1 < n && t[(ifst+1)*ldt+ifst] != 0 {
106 case ifst == ilst:
107 return ifst, ilst, true
109 case ifst < ilst:
117 here := ifst
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/gonum.org/v1/gonum/lapack/gonum/
H A Ddtrexc.go58 case (ifst < 0 || n <= ifst) && n > 0:
66 return ifst, ilst, true
80 return ifst, ilst, true
85 if ifst > 0 && t[ifst*ldt+ifst-1] != 0 {
86 ifst--
89 if ifst+1 < n && t[(ifst+1)*ldt+ifst] != 0 {
106 case ifst == ilst:
107 return ifst, ilst, true
109 case ifst < ilst:
117 here := ifst
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/vendor/gonum.org/v1/gonum/lapack/gonum/
H A Ddtrexc.go58 case (ifst < 0 || n <= ifst) && n > 0:
66 return ifst, ilst, true
80 return ifst, ilst, true
85 if ifst > 0 && t[ifst*ldt+ifst-1] != 0 {
86 ifst--
89 if ifst+1 < n && t[(ifst+1)*ldt+ifst] != 0 {
106 case ifst == ilst:
107 return ifst, ilst, true
109 case ifst < ilst:
117 here := ifst
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/openshift/api/vendor/gonum.org/v1/gonum/lapack/gonum/
H A Ddtrexc.go58 case (ifst < 0 || n <= ifst) && n > 0:
66 return ifst, ilst, true
80 return ifst, ilst, true
85 if ifst > 0 && t[ifst*ldt+ifst-1] != 0 {
86 ifst--
89 if ifst+1 < n && t[(ifst+1)*ldt+ifst] != 0 {
106 case ifst == ilst:
107 return ifst, ilst, true
109 case ifst < ilst:
117 here := ifst
[all …]
/dports/math/openfst/openfst-1.8.1/src/include/fst/
H A Dreverse.h48 void Reverse(const Fst<FromArc> &ifst, MutableFst<ToArc> *ofst,
53 ofst->SetInputSymbols(ifst.InputSymbols());
54 ofst->SetOutputSymbols(ifst.OutputSymbols());
55 if (ifst.Properties(kExpanded, false)) {
56 ofst->ReserveStates(CountStates(ifst) + 1);
58 StateId istart = ifst.Start();
66 if (ifst.Final(s) == Weight::Zero()) continue;
77 DfsVisit(ifst, &scc_visitor);
101 const auto weight = ifst.Final(is);
112 weight = Times(ifst.Final(ostart).Reverse(), weight);
[all …]
H A Dshortest-path.h91 ofst->SetInputSymbols(ifst.InputSymbols()); in SingleShortestPathBacktrace()
92 ofst->SetOutputSymbols(ifst.OutputSymbols()); in SingleShortestPathBacktrace()
102 ArcIterator<Fst<Arc>> aiter(ifst, state); in SingleShortestPathBacktrace()
126 ofst->SetInputSymbols(ifst.InputSymbols()); in SingleShortestTree()
128 ofst->SetStart(ifst.Start()); in SingleShortestTree()
232 if (ifst.Final(s) != Weight::Zero()) { in SingleShortestPath()
355 ofst->SetInputSymbols(ifst.InputSymbols());
368 if (ifst.Start() == kNoStateId || distance.size() <= ifst.Start() ||
488 ShortestDistance(ifst, distance, opts); in ShortestPath()
498 Reverse(ifst, &rfst); in ShortestPath()
[all …]
H A Depsnormalize.h46 void EpsNormalize(const Fst<Arc> &ifst, MutableFst<Arc> *ofst,
48 EpsNormalize<Arc, GALLIC>(ifst, ofst, type);
53 void EpsNormalize(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, in EpsNormalize() argument
58 ArcMap(ifst, &gfst, ToGallicMapper<Arc, G>()); in EpsNormalize()
59 if (ifst.OutputSymbols()) symbols.reset(ifst.OutputSymbols()->Copy()); in EpsNormalize()
61 ArcMap(InvertFst<Arc>(ifst), &gfst, ToGallicMapper<Arc, G>()); in EpsNormalize()
62 if (ifst.InputSymbols()) symbols.reset(ifst.InputSymbols()->Copy()); in EpsNormalize()
/dports/textproc/regex2dfa/regex2dfa-0.1.6/third_party/openfst/src/include/fst/
H A Dreverse.h58 ofst->SetInputSymbols(ifst.InputSymbols());
59 ofst->SetOutputSymbols(ifst.OutputSymbols());
60 if (ifst.Properties(kExpanded, false))
61 ofst->ReserveStates(CountStates(ifst) + 1);
62 StateId istart = ifst.Start();
68 for (StateIterator<Fst<Arc> > siter(ifst);
72 if (ifst.Final(is) == Weight::Zero()) continue;
84 DfsVisit(ifst, &scc_visitor);
106 for (StateIterator<Fst<Arc> > siter(ifst);
116 Weight final = ifst.Final(is);
[all …]
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/redjack/marionette/third_party/openfst/src/include/fst/
H A Dreverse.h58 ofst->SetInputSymbols(ifst.InputSymbols());
59 ofst->SetOutputSymbols(ifst.OutputSymbols());
60 if (ifst.Properties(kExpanded, false))
61 ofst->ReserveStates(CountStates(ifst) + 1);
62 StateId istart = ifst.Start();
68 for (StateIterator<Fst<Arc> > siter(ifst);
72 if (ifst.Final(is) == Weight::Zero()) continue;
84 DfsVisit(ifst, &scc_visitor);
106 for (StateIterator<Fst<Arc> > siter(ifst);
116 Weight final = ifst.Final(is);
[all …]
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/redjack/marionette/third_party/openfst/src/include/fst/
H A Dreverse.h58 ofst->SetInputSymbols(ifst.InputSymbols());
59 ofst->SetOutputSymbols(ifst.OutputSymbols());
60 if (ifst.Properties(kExpanded, false))
61 ofst->ReserveStates(CountStates(ifst) + 1);
62 StateId istart = ifst.Start();
68 for (StateIterator<Fst<Arc> > siter(ifst);
72 if (ifst.Final(is) == Weight::Zero()) continue;
84 DfsVisit(ifst, &scc_visitor);
106 for (StateIterator<Fst<Arc> > siter(ifst);
116 Weight final = ifst.Final(is);
[all …]
/dports/textproc/regex2dfa/regex2dfa-0.1.6/third_party/openfst/src/extensions/pdt/
H A Dpdtscript.cc54 void PdtExpand(const FstClass &ifst, in PdtExpand() argument
57 PdtExpandArgs args(ifst, parens, ofst, opts); in PdtExpand()
62 void PdtExpand(const FstClass &ifst, in PdtExpand() argument
65 PdtExpand(ifst, parens, ofst, PdtExpandOptions(connect)); in PdtExpand()
84 void PdtReverse(const FstClass &ifst, in PdtReverse() argument
87 PdtReverseArgs args(ifst, parens, ofst); in PdtReverse()
92 void PdtShortestPath(const FstClass &ifst, in PdtShortestPath() argument
96 PdtShortestPathArgs args(ifst, parens, ofst, opts); in PdtShortestPath()
99 ifst.ArcType(), &args); in PdtShortestPath()
102 void PrintPdtInfo(const FstClass &ifst, in PrintPdtInfo() argument
[all …]
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/redjack/marionette/third_party/openfst/src/extensions/pdt/
H A Dpdtscript.cc54 void PdtExpand(const FstClass &ifst, in PdtExpand() argument
57 PdtExpandArgs args(ifst, parens, ofst, opts); in PdtExpand()
62 void PdtExpand(const FstClass &ifst, in PdtExpand() argument
65 PdtExpand(ifst, parens, ofst, PdtExpandOptions(connect)); in PdtExpand()
84 void PdtReverse(const FstClass &ifst, in PdtReverse() argument
87 PdtReverseArgs args(ifst, parens, ofst); in PdtReverse()
92 void PdtShortestPath(const FstClass &ifst, in PdtShortestPath() argument
96 PdtShortestPathArgs args(ifst, parens, ofst, opts); in PdtShortestPath()
99 ifst.ArcType(), &args); in PdtShortestPath()
102 void PrintPdtInfo(const FstClass &ifst, in PrintPdtInfo() argument
[all …]
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/redjack/marionette/third_party/openfst/src/extensions/pdt/
H A Dpdtscript.cc54 void PdtExpand(const FstClass &ifst, in PdtExpand() argument
57 PdtExpandArgs args(ifst, parens, ofst, opts); in PdtExpand()
62 void PdtExpand(const FstClass &ifst, in PdtExpand() argument
65 PdtExpand(ifst, parens, ofst, PdtExpandOptions(connect)); in PdtExpand()
84 void PdtReverse(const FstClass &ifst, in PdtReverse() argument
87 PdtReverseArgs args(ifst, parens, ofst); in PdtReverse()
92 void PdtShortestPath(const FstClass &ifst, in PdtShortestPath() argument
96 PdtShortestPathArgs args(ifst, parens, ofst, opts); in PdtShortestPath()
99 ifst.ArcType(), &args); in PdtShortestPath()
102 void PrintPdtInfo(const FstClass &ifst, in PrintPdtInfo() argument
[all …]
/dports/math/openfst/openfst-1.8.1/src/include/fst/script/
H A Dmap.h82 auto ofst = StateMap(ifst, ArcSumMapper<Arc>(ifst)); in Map()
87 auto ofst = StateMap(ifst, ArcUniqueMapper<Arc>(ifst)); in Map()
92 auto ofst = ArcMap(ifst, IdentityArcMapper<Arc>()); in Map()
97 auto ofst = ArcMap(ifst, InputEpsilonMapper<Arc>()); in Map()
102 auto ofst = ArcMap(ifst, InvertWeightMapper<Arc>()); in Map()
107 auto ofst = ArcMap(ifst, OutputEpsilonMapper<Arc>()); in Map()
113 auto ofst = ArcMap(ifst, PlusMapper<Arc>(weight)); in Map()
119 auto ofst = ArcMap(ifst, PowerMapper<Arc>(power)); in Map()
130 auto ofst = ArcMap(ifst, RmWeightMapper<Arc>()); in Map()
135 auto ofst = ArcMap(ifst, SuperFinalMapper<Arc>()); in Map()
[all …]
H A Dshortest-path.h57 void ShortestPath(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, in ShortestPath() argument
64 QueueConstructor<Arc, Queue, ArcFilter>::Construct(ifst, distance)); in ShortestPath()
69 ShortestPath(ifst, ofst, distance, sopts); in ShortestPath()
78 void ShortestPath(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, in ShortestPath() argument
85 ShortestPath<Arc, AutoQueue<StateId>>(ifst, ofst, &distance, opts); in ShortestPath()
89 ShortestPath<Arc, FifoQueue<StateId>>(ifst, ofst, &distance, opts); in ShortestPath()
93 ShortestPath<Arc, LifoQueue<StateId>>(ifst, ofst, &distance, opts); in ShortestPath()
99 ifst, ofst, &distance, opts); in ShortestPath()
130 const Fst<Arc> &ifst = *std::get<0>(*args).GetFst<Arc>(); in ShortestPath() local
133 internal::ShortestPath(ifst, ofst, opts); in ShortestPath()
[all …]
/dports/math/openfst/openfst-1.8.1/src/extensions/pdt/
H A Dpdtscript.cc55 void PdtExpand(const FstClass &ifst, in PdtExpand() argument
58 PdtExpandArgs args(ifst, parens, ofst, opts); in PdtExpand()
59 Apply<Operation<PdtExpandArgs>>("PdtExpand", ifst.ArcType(), &args); in PdtExpand()
64 void PdtExpand(const FstClass &ifst, in PdtExpand() argument
68 PdtExpand(ifst, parens, ofst, in PdtExpand()
92 void PdtReverse(const FstClass &ifst, in PdtReverse() argument
95 PdtReverseArgs args(ifst, parens, ofst); in PdtReverse()
101 void PdtShortestPath(const FstClass &ifst, in PdtShortestPath() argument
105 PdtShortestPathArgs args(ifst, parens, ofst, opts); in PdtShortestPath()
112 void PrintPdtInfo(const FstClass &ifst, in PrintPdtInfo() argument
[all …]
/dports/science/siconos/siconos-4.4.0/externals/numeric_bindings/boost/numeric/bindings/lapack/computational/
H A Dtrexc.hpp58 fortran_int_t& ifst, fortran_int_t& ilst, float* work ) { in trexc() argument
86 const fortran_int_t ifst, const fortran_int_t ilst ) { in trexc() argument
88 LAPACK_CTREXC( &compq, &n, t, &ldt, q, &ldq, &ifst, &ilst, &info ); in trexc()
100 const fortran_int_t ifst, const fortran_int_t ilst ) { in trexc() argument
131 fortran_int_t& ifst, fortran_int_t& ilst, in invoke()
169 fortran_int_t& ifst, fortran_int_t& ilst, in invoke()
186 fortran_int_t& ifst, fortran_int_t& ilst, in invoke()
217 const fortran_int_t ifst, const fortran_int_t ilst ) { in invoke()
278 MatrixT >::type >::invoke( compq, t, q, ifst, ilst, in trexc()
287 const fortran_int_t ifst, const fortran_int_t ilst ) { in trexc() argument
[all …]
/dports/math/openfst/openfst-1.8.1/src/extensions/mpdt/
H A Dmpdtscript.cc53 void MPdtExpand(const FstClass &ifst, in MPdtExpand() argument
57 MPdtExpandArgs args(ifst, parens, assignments, ofst, opts); in MPdtExpand()
58 Apply<Operation<MPdtExpandArgs>>("MPdtExpand", ifst.ArcType(), &args); in MPdtExpand()
63 void MPdtExpand(const FstClass &ifst, in MPdtExpand() argument
67 MPdtExpand(ifst, parens, assignments, ofst, MPdtExpandOptions(connect)); in MPdtExpand()
70 void MPdtReverse(const FstClass &ifst, in MPdtReverse() argument
73 MPdtReverseArgs args(ifst, parens, assignments, ofst); in MPdtReverse()
74 Apply<Operation<MPdtReverseArgs>>("MPdtReverse", ifst.ArcType(), &args); in MPdtReverse()
79 void PrintMPdtInfo(const FstClass &ifst, in PrintMPdtInfo() argument
82 PrintMPdtInfoArgs args(ifst, parens, assignments); in PrintMPdtInfo()
[all …]
/dports/textproc/regex2dfa/regex2dfa-0.1.6/third_party/openfst/src/include/fst/script/
H A Dshortest-path.h73 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
78 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
85 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
90 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
97 ArcFilter >::Construct(ifst, &weights); in ShortestPath()
102 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
109 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
114 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
121 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
126 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
[all …]
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/redjack/marionette/third_party/openfst/src/include/fst/script/
H A Dshortest-path.h73 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
78 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
85 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
90 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
97 ArcFilter >::Construct(ifst, &weights); in ShortestPath()
102 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
109 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
114 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
121 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
126 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
[all …]
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/redjack/marionette/third_party/openfst/src/include/fst/script/
H A Dshortest-path.h73 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
78 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
85 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
90 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
97 ArcFilter >::Construct(ifst, &weights); in ShortestPath()
102 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
109 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
114 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
121 ArcFilter>::Construct(ifst, &weights); in ShortestPath()
126 ShortestPath(ifst, ofst, &weights, spopts); in ShortestPath()
[all …]
/dports/textproc/regex2dfa/regex2dfa-0.1.6/third_party/openfst/src/script/
H A Dshortest-path.cc24 void ShortestPath(const FstClass &ifst, MutableFstClass *ofst, in ShortestPath() argument
27 if (!ArcTypesMatch(ifst, *ofst, "ShortestPath")) return; in ShortestPath()
29 ShortestPathArgs1 args(ifst, ofst, distance, opts); in ShortestPath()
30 Apply<Operation<ShortestPathArgs1> >("ShortestPath", ifst.ArcType(), &args); in ShortestPath()
33 void ShortestPath(const FstClass &ifst, MutableFstClass *ofst, in ShortestPath() argument
36 if (!ArcTypesMatch(ifst, *ofst, "ShortestPath")) return; in ShortestPath()
38 ShortestPathArgs2 args(ifst, ofst, n, unique, first_path, weight_threshold, in ShortestPath()
40 Apply<Operation<ShortestPathArgs2> >("ShortestPath", ifst.ArcType(), &args); in ShortestPath()
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/redjack/marionette/third_party/openfst/src/script/
H A Dshortest-path.cc24 void ShortestPath(const FstClass &ifst, MutableFstClass *ofst, in ShortestPath() argument
27 if (!ArcTypesMatch(ifst, *ofst, "ShortestPath")) return; in ShortestPath()
29 ShortestPathArgs1 args(ifst, ofst, distance, opts); in ShortestPath()
30 Apply<Operation<ShortestPathArgs1> >("ShortestPath", ifst.ArcType(), &args); in ShortestPath()
33 void ShortestPath(const FstClass &ifst, MutableFstClass *ofst, in ShortestPath() argument
36 if (!ArcTypesMatch(ifst, *ofst, "ShortestPath")) return; in ShortestPath()
38 ShortestPathArgs2 args(ifst, ofst, n, unique, first_path, weight_threshold, in ShortestPath()
40 Apply<Operation<ShortestPathArgs2> >("ShortestPath", ifst.ArcType(), &args); in ShortestPath()
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/redjack/marionette/third_party/openfst/src/script/
H A Dshortest-path.cc24 void ShortestPath(const FstClass &ifst, MutableFstClass *ofst, in ShortestPath() argument
27 if (!ArcTypesMatch(ifst, *ofst, "ShortestPath")) return; in ShortestPath()
29 ShortestPathArgs1 args(ifst, ofst, distance, opts); in ShortestPath()
30 Apply<Operation<ShortestPathArgs1> >("ShortestPath", ifst.ArcType(), &args); in ShortestPath()
33 void ShortestPath(const FstClass &ifst, MutableFstClass *ofst, in ShortestPath() argument
36 if (!ArcTypesMatch(ifst, *ofst, "ShortestPath")) return; in ShortestPath()
38 ShortestPathArgs2 args(ifst, ofst, n, unique, first_path, weight_threshold, in ShortestPath()
40 Apply<Operation<ShortestPathArgs2> >("ShortestPath", ifst.ArcType(), &args); in ShortestPath()

12345678910>>...24