HomeSort by relevance Sort by last modified time
    Searched full:ofst (Results 51 - 75 of 120) sorted by null

1 23 4 5

  /external/openfst/src/include/fst/script/
encode.h 34 MutableFst<Arc> *ofst = args->arg1->GetMutableFst<Arc>(); local
43 Encode(ofst, encoder);
prune.h 80 MutableFst<Arc> *ofst = args->arg1->GetMutableFst<Arc>(); local
87 Prune(ofst, opts);
98 MutableFst<Arc> *ofst = args->arg2->GetMutableFst<Arc>(); local
102 Prune(ifst, ofst, opts);
114 MutableFst<Arc> *ofst = args->arg2->GetMutableFst<Arc>(); local
117 Prune(ifst, ofst, w, args->arg4, args->arg5);
139 void Prune(const FstClass &ifst, MutableFstClass *ofst,
script-impl.h 36 // void Foo(const FstClass &ifst, MutableFstClass *ofst);
56 // MutableFst<Arc> *ofst = args->arg2->GetMutableFst<Arc>();
58 // // actually perform foo on ifst and ofst...
64 // void Foo(const FstClass &ifst, MutableFstClass *ofst) {
66 // if (!ArcTypesMatch(ifst, *ofst, "Foo")) return;
68 // FooArgs args(ifst, ofst);
rmepsilon.h 137 MutableFst<Arc> *ofst = args->arg2->GetMutableFst<Arc>(); local
145 Reverse(rfst, ofst);
147 *ofst = ifst;
149 RmEpsilonHelper(ofst, &distance, args->arg4);
190 void RmEpsilon(const FstClass &ifst, MutableFstClass *ofst,
  /external/chromium_org/third_party/sqlite/src/tool/
showwal.c 51 static unsigned char *getContent(int ofst, int nByte){
55 lseek(fd, ofst, SEEK_SET);
64 int ofst, /* First byte in the range of bytes to print */
108 int ofst, int nByte, /* Start and size of decode */
113 int val = aData[ofst];
115 sprintf(zBuf, " %03x: %02x", ofst, aData[ofst]);
121 sprintf(&zBuf[i], " %02x", aData[ofst+j]);
122 val = val*256 + aData[ofst+j];
323 int ofst, nByte, hdrSize
    [all...]
showdb.c 58 static unsigned char *getContent(int ofst, int nByte){
63 lseek(db, ofst, SEEK_SET);
72 int ofst, /* First byte in the range of bytes to print */
92 aData = getContent(ofst, nByte);
131 int ofst, int nByte, /* Start and size of decode */
135 int val = aData[ofst];
137 sprintf(zBuf, " %03x: %02x", ofst, aData[ofst]);
143 sprintf(&zBuf[i], " %02x", aData[ofst+j]);
144 val = val*256 + aData[ofst+j]
516 int ofst, nByte, hdrSize; local
    [all...]
  /external/openfst/src/include/fst/
push.h 118 // OFST obtained from IFST by pushing weights and/or labels according
125 MutableFst<Arc> *ofst,
130 *ofst = ifst;
131 Push(ofst, rtype, delta, ptype & kPushRemoveTotalWeight);
164 ArcMap(fwfst, ofst, FromGallicMapper<Arc, stype>());
165 ofst->SetOutputSymbols(ifst.OutputSymbols());
169 *ofst = ifst;
prune.h 209 // 'ofst' contains states and arcs that belong to a successful path in
212 // kNoStateId', 'ofst' will be restricted further to have at most
218 MutableFst<Arc> *ofst,
228 ofst->SetProperties(kError, kError);
231 ofst->DeleteStates();
232 ofst->SetInputSymbols(ifst.InputSymbols());
233 ofst->SetOutputSymbols(ifst.OutputSymbols());
261 copy[s] = ofst->AddState();
262 ofst->SetStart(copy[s]);
278 ofst->SetFinal(copy[s], ifst.Final(s))
    [all...]
map.h 42 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) {
43 ArcMap(ifst, ofst, mapper);
47 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) {
48 ArcMap(ifst, ofst, mapper);
difference.h 161 MutableFst<Arc> *ofst,
168 *ofst = DifferenceFst<Arc>(ifst1, ifst2, nopts);
172 *ofst = DifferenceFst<Arc>(ifst1, ifst2, dopts);
176 *ofst = DifferenceFst<Arc>(ifst1, ifst2, dopts);
180 *ofst = DifferenceFst<Arc>(ifst1, ifst2, dopts);
184 Connect(ofst);
intersect.h 144 MutableFst<Arc> *ofst,
151 *ofst = IntersectFst<Arc>(ifst1, ifst2, nopts);
155 *ofst = IntersectFst<Arc>(ifst1, ifst2, iopts);
159 *ofst = IntersectFst<Arc>(ifst1, ifst2, iopts);
163 *ofst = IntersectFst<Arc>(ifst1, ifst2, iopts);
167 Connect(ofst);
arc-map.h 200 void ArcMap(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) {
204 ofst->DeleteStates();
207 ofst->SetInputSymbols(ifst.InputSymbols());
209 ofst->SetInputSymbols(0);
212 ofst->SetOutputSymbols(ifst.OutputSymbols());
214 ofst->SetOutputSymbols(0);
219 if (iprops & kError) ofst->SetProperties(kError, kError);
225 ofst->ReserveStates(CountStates(ifst) +
231 ofst->AddState();
235 superfinal = ofst->AddState()
    [all...]
  /external/openfst/src/bin/
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);
fstreplace.cc 59 VectorFstClass ofst(ifst->ArcType());
60 Replace(fst_tuples, &ofst, root, FLAGS_epsilon_on_replace);
62 ofst.Write(out_fname);
fstrmepsilon.cc 83 MutableFstClass *ofst = new VectorFstClass(ifst->ArcType()); local
84 s::RmEpsilon(*ifst, ofst, FLAGS_reverse, opts);
86 ofst->Write(out_fname);
  /external/openfst/src/extensions/pdt/
pdtexpand.cc 64 s::VectorFstClass ofst(ifst->ArcType());
65 s::PdtExpand(*ifst, parens, &ofst, s::PdtExpandOptions(
68 ofst.Write(out_name);
pdtreplace.cc 65 s::VectorFstClass ofst(ifst->ArcType());
67 s::PdtReplace(fst_tuples, &ofst, &parens, root);
72 ofst.Write(out_fname);
pdtshortestpath.cc 61 s::VectorFstClass ofst(ifst->ArcType());
77 s::PdtShortestPath(*ifst, parens, &ofst, opts);
78 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/
epsnormalize.h 50 void EpsNormalize(const Fst<Arc> &ifst, MutableFst<Arc> *ofst,
63 Map(fwfst, ofst, FromGallicMapper<Arc, STRING_RIGHT_RESTRICT>());
65 Invert(ofst);
  /external/openfst/src/script/
prune.cc 42 MutableFstClass *ofst,
45 PruneArgs3 args(ifst, ofst, weight_threshold, state_threshold, delta);

Completed in 195 milliseconds

1 23 4 5