HomeSort by relevance Sort by last modified time
    Searched refs:ofst (Results 26 - 50 of 117) sorted by null

12 3 4 5

  /external/openfst/src/script/
shortest-path.cc 24 void ShortestPath(const FstClass &ifst, MutableFstClass *ofst,
27 if (!ArcTypesMatch(ifst, *ofst, "ShortestPath")) return;
29 ShortestPathArgs1 args(ifst, ofst, distance, opts);
33 void ShortestPath(const FstClass &ifst, MutableFstClass *ofst,
36 if (!ArcTypesMatch(ifst, *ofst, "ShortestPath")) return;
38 ShortestPathArgs2 args(ifst, ofst, n, unique, first_path, weight_threshold,
  /external/openfst/src/extensions/pdt/
pdtscript.cc 43 MutableFstClass *ofst,
47 !ArcTypesMatch(ifst1, *ofst, "PdtCompose")) return;
49 PdtComposeArgs args(ifst1, ifst2, parens, ofst, copts, left_pdt);
56 MutableFstClass *ofst, const PdtExpandOptions &opts) {
57 PdtExpandArgs args(ifst, parens, ofst, opts);
64 MutableFstClass *ofst, bool connect) {
65 PdtExpand(ifst, parens, ofst, PdtExpandOptions(connect));
69 MutableFstClass *ofst,
77 if (!ArcTypesMatch((*fst_tuples[0].second), *ofst, "PdtReplace")) return;
79 PdtReplaceArgs args(fst_tuples, ofst, parens, root)
    [all...]
pdtreverse.cc 55 s::VectorFstClass ofst(ifst->ArcType());
56 s::PdtReverse(*ifst, parens, &ofst);
58 ofst.Write(out_name);
pdtcompose.cc 75 s::VectorFstClass ofst(ifst1->ArcType());
93 s::PdtCompose(*ifst1, *ifst2, parens, &ofst, copts, FLAGS_left_pdt);
96 s::Connect(&ofst);
97 ofst.Write(out_name);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
randgen.h 106 int64 dest; // 'ofst' state to append
117 void RandGen(const Fst<Arc> &ifst, MutableFst<Arc> *ofst,
125 ofst->DeleteStates();
126 ofst->SetInputSymbols(ifst.InputSymbols());
127 ofst->SetOutputSymbols(ifst.OutputSymbols());
128 ofst->SetStart(ofst->AddState());
131 nopts.dest = ofst->Start();
133 RandGen(ifst, ofst, nopts);
141 ofst->SetFinal(opts.dest, Weight::One())
    [all...]
epsnormalize.h 50 void EpsNormalize(const Fst<Arc> &ifst, MutableFst<Arc> *ofst,
63 Map(fwfst, ofst, FromGallicMapper<Arc, STRING_RIGHT_RESTRICT>());
65 Invert(ofst);
push.h 51 // OFST obtained from IFST by pushing weights and/or labels according
57 void Push(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, uint32 ptype) {
60 *ofst = ifst;
61 Push(ofst, rtype);
81 Map(fwfst, ofst, FromGallicMapper<Arc, stype>());
83 *ofst = ifst;
shortest-path.h 50 // 'ShortestPath' below with n=1. 'ofst' contains the shortest path in
62 MutableFst<Arc> *ofst,
68 ofst->DeleteStates();
69 ofst->SetInputSymbols(ifst.InputSymbols());
70 ofst->SetOutputSymbols(ifst.OutputSymbols());
154 s_p = ofst->AddState();
156 ofst->SetFinal(s_p, ifst.Final(f_parent));
159 ofst->AddArc(s_p, arc_parent[d]);
162 ofst->SetStart(s_p);
207 // 'ofst' contains the n-shortest paths in 'ifst'. 'distance' return
    [all...]
  /external/openfst/src/bin/
fstepsnormalize.cc 53 VectorFstClass ofst(ifst->ArcType());
54 s::EpsNormalize(*ifst, &ofst, eps_norm_type);
55 ofst.Write(out_name);
fstsynchronize.cc 47 VectorFstClass ofst(ifst->ArcType());
49 s::Synchronize(*ifst, &ofst);
51 ofst.Write(out_name);
fstpush.cc 66 VectorFstClass ofst(ifst->ArcType());
69 s::Push(*ifst, &ofst, flags, fst::REWEIGHT_TO_FINAL, FLAGS_delta);
71 s::Push(*ifst, &ofst, flags, fst::REWEIGHT_TO_INITIAL, FLAGS_delta);
74 ofst.Write(out_name);
fstcompose.cc 70 VectorFstClass ofst(ifst1->ArcType());
90 s::Compose(*ifst1, *ifst2, &ofst, opts);
92 ofst.Write(out_name);
fstdeterminize.cc 56 VectorFstClass ofst(ifst->ArcType());
63 s::Determinize(*ifst, &ofst, opts);
65 ofst.Write(out_name);
fstdifference.cc 62 VectorFstClass ofst(ifst1->ArcType());
82 s::Difference(*ifst1, *ifst2, &ofst, opts);
84 ofst.Write(out_name);
fstintersect.cc 63 VectorFstClass ofst(ifst1->ArcType());
83 s::Intersect(*ifst1, *ifst2, &ofst, opts);
85 ofst.Write(out_name);
fstrandgen.cc 59 VectorFstClass ofst(ifst->ArcType());
75 s::RandGen(*ifst, &ofst, FLAGS_seed,
80 ofst.Write(out_name);
  /external/openfst/src/include/fst/script/
decode.h 33 MutableFst<Arc> *ofst = args->arg1->GetMutableFst<Arc>(); local
36 Decode(ofst, *decoder);
randgen.h 39 MutableFst<Arc> *ofst = args->arg2->GetMutableFst<Arc>(); local
48 RandGen(ifst, ofst, ropts);
54 RandGen(ifst, ofst, ropts);
60 RandGen(ifst, ofst, ropts);
66 void RandGen(const FstClass &ifst, MutableFstClass *ofst, int32 seed = time(0),
map.h 33 VectorFst<ToArc> *ofst = new VectorFst<ToArc>; local
34 ArcMap(fst, ofst, mapper);
35 return ofst;
42 VectorFst<ToArc> *ofst = new VectorFst<ToArc>; local
43 StateMap(fst, ofst, mapper);
44 return ofst;
102 VectorFst<Arc> *ofst = new VectorFst<Arc>; local
103 ofst->SetProperties(kError, kError);
104 args->retval = new FstClass(*(fst =ofst));
relabel.h 41 MutableFst<Arc> *ofst = args->arg1->GetMutableFst<Arc>(); local
43 Relabel(ofst, args->arg2, args->arg3, args->arg4,
54 MutableFst<Arc> *ofst = args->arg1->GetMutableFst<Arc>(); local
66 Relabel(ofst, converted_ipairs, converted_opairs);
81 void Relabel(MutableFstClass *ofst,
88 void Relabel(MutableFstClass *ofst,
encode.h 34 MutableFst<Arc> *ofst = args->arg1->GetMutableFst<Arc>(); local
43 Encode(ofst, encoder);
closure.h 36 void Closure(MutableFstClass *ofst, ClosureType closure_type);
  /external/openfst/src/include/fst/
shortest-path.h 67 // 'ShortestPath' below with n=1. 'ofst' contains the shortest path in
79 MutableFst<Arc> *ofst,
85 ofst->DeleteStates();
86 ofst->SetInputSymbols(ifst.InputSymbols());
87 ofst->SetOutputSymbols(ifst.OutputSymbols());
90 if (ifst.Properties(kError, false)) ofst->SetProperties(kError, kError);
108 ofst->SetProperties(kError, kError);
115 ofst->SetProperties(kError, kError);
122 ofst->SetProperties(kError, kError);
149 ofst->SetProperties(kError, kError)
    [all...]
epsnormalize.h 52 void EpsNormalize(const Fst<Arc> &ifst, MutableFst<Arc> *ofst,
65 ArcMap(fwfst, ofst, FromGallicMapper<Arc, STRING_RIGHT_RESTRICT>());
66 ofst->SetOutputSymbols(ifst.OutputSymbols());
68 Invert(ofst);
  /external/chromium_org/third_party/sqlite/src/tool/
showjournal.c 50 int ofst, int nByte, /* Start and size of decode */
54 unsigned val = aData[ofst];
56 sprintf(zBuf, " %03x: %02x", ofst, aData[ofst]);
62 sprintf(&zBuf[i], " %02x", aData[ofst+j]);
63 val = val*256 + aData[ofst+j];

Completed in 440 milliseconds

12 3 4 5