Searched defs:fst (Results 1 - 25 of 315) sorted by path

1234567891011>>

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
H A Dgas-fp.asm9 fst %st(2) label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dgenopcode.asm121 fst dword [1] label
122 fst qword [8] label
123 fst st1 label
/external/clang/test/OpenMP/
H A Dfor_loop_messages.cpp377 GoodIter(int fst, int snd) {} argument
H A Dparallel_for_loop_messages.cpp326 GoodIter(int fst, int snd) {} argument
H A Dsimd_loop_messages.cpp319 GoodIter(int fst, int snd) { } argument
/external/openfst/src/bin/
H A Dfstarcsort.cc25 #include <fst/compat.h>
26 #include <fst/script/arcsort.h>
32 using fst::script::FstClass;
33 using fst::script::MutableFstClass;
34 using fst::script::ArcSort;
38 usage += " [in.fst [out.fst]]\n";
51 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
52 if (!fst) return 1;
55 ArcSort(fst, fs
[all...]
H A Dfstclosure.cc23 #include <fst/script/closure.h>
29 using fst::script::FstClass;
30 using fst::script::MutableFstClass;
34 usage += " [in.fst [out.fst]]\n";
46 MutableFstClass *fst = MutableFstClass::Read(in_fname, true); local
47 if (!fst) return 1;
49 fst::ClosureType closure_type =
50 FLAGS_closure_plus ? fst::CLOSURE_PLUS : fst
[all...]
H A Dfstconnect.cc24 #include <fst/script/connect.h>
27 namespace s = fst::script;
28 using fst::script::FstClass;
29 using fst::script::MutableFstClass;
33 usage += " [in.fst [out.fst]]\n";
45 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
46 if (!fst) return 1;
48 s::Connect(fst);
49 fst
[all...]
H A Dfstdraw.cc22 #include <fst/script/draw.h>
46 namespace s = fst::script;
47 using fst::ostream;
48 using fst::SymbolTable;
52 usage += " [binary.fst [text.dot]]\n";
63 s::FstClass *fst = s::FstClass::Read(in_name); local
64 if (!fst) return 1;
70 ostrm = new fst::ofstream(argv[2]);
80 fst::SymbolTableTextOptions opts;
99 isyms = fst
[all...]
H A Dfstencode.cc23 #include <fst/script/encode.h>
24 #include <fst/script/decode.h>
33 namespace s = fst::script;
34 using fst::script::FstClass;
35 using fst::script::MutableFstClass;
39 usage += " in.fst codex [out.fst]\n";
52 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
53 if (!fst) return 1;
57 flags |= FLAGS_encode_labels ? fst
[all...]
H A Dfstinvert.cc23 #include <fst/script/invert.h>
26 namespace s = fst::script;
27 using fst::script::FstClass;
28 using fst::script::MutableFstClass;
32 usage += " [in.fst [out.fst]]\n";
44 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
45 if (!fst) return 1;
47 s::Invert(fst);
48 fst
[all...]
H A Dfstprint.cc23 #include <fst/script/print.h>
38 namespace s = fst::script;
39 using fst::ostream;
40 using fst::SymbolTable;
44 usage += " [binary.fst [text.fst]]\n";
56 s::FstClass *fst = s::FstClass::Read(in_name); local
57 if (!fst) return 1;
63 ostrm = new fst::ofstream(argv[2]);
73 fst
[all...]
H A Dfstproject.cc23 #include <fst/script/project.h>
28 namespace s = fst::script;
29 using fst::script::FstClass;
30 using fst::script::MutableFstClass;
35 usage += " [in.fst [out.fst]]\n";
47 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
48 if (!fst) return 1;
50 fst::ProjectType project_type = FLAGS_project_output ?
51 fst
[all...]
H A Dfstprune.cc23 #include <fst/script/prune.h>
25 DEFINE_double(delta, fst::kDelta, "Comparison/quantization delta");
26 DEFINE_int64(nstate, fst::kNoStateId, "State number threshold");
31 namespace s = fst::script;
32 using fst::script::FstClass;
33 using fst::script::MutableFstClass;
34 using fst::script::WeightClass;
38 usage += " [in.fst [out.fst]]\n";
50 MutableFstClass *fst local
[all...]
H A Dfstrelabel.cc29 #include <fst/script/relabel.h>
30 #include <fst/script/weight-class.h>
31 #include <fst/util.h>
44 namespace s = fst::script;
45 using fst::SymbolTable;
46 using fst::SymbolTableTextOptions;
47 using fst::script::FstClass;
48 using fst::script::MutableFstClass;
53 usage += " [in.fst [out.fst]]\
71 MutableFstClass *fst = MutableFstClass::Read(in_name, true); local
[all...]
H A Dfstreweight.cc23 #include <fst/script/reweight.h>
24 #include <fst/script/text-io.h>
29 namespace s = fst::script;
30 using fst::script::FstClass;
31 using fst::script::MutableFstClass;
35 usage += " in.fst potential.txt [out.fst]\n";
48 MutableFstClass *fst = MutableFstClass::Read(in_fname, true); local
49 if (!fst) return 1;
52 if (!s::ReadPotentials(fst
[all...]
H A Dfstsymbols.cc24 #include <fst/script/fst-class.h>
25 #include <fst/script/script-impl.h>
26 #include <fst/script/verify.h>
27 #include <fst/util.h>
35 DEFINE_string(save_isymbols, "", "Save fst file's input symbol table to file");
36 DEFINE_string(save_osymbols, "", "Save fst file's output symbol table to file");
39 DEFINE_bool(verify, false, "Verify fst properities before saving");
42 namespace s = fst::script;
43 using fst
60 s::MutableFstClass *fst = s::MutableFstClass::Read(in_fname, true); local
[all...]
H A Dfsttopsort.cc23 #include <fst/script/topsort.h>
26 namespace s = fst::script;
27 using fst::script::FstClass;
28 using fst::script::MutableFstClass;
32 usage += " [in.fst [out.fst]]\n";
44 MutableFstClass *fst = MutableFstClass::Read(in_fname, true); local
45 if (!fst) return 1;
47 bool acyclic = TopSort(fst);
50 fst
[all...]
/external/openfst/src/extensions/far/
H A Dfarscript.cc20 #include <fst/extensions/far/farscript.h>
21 #include <fst/script/script-impl.h>
22 #include <fst/extensions/far/far.h>
24 namespace fst { namespace
131 } // namespace fst
H A Dmain.cc30 #include <fst/extensions/far/main.h>
32 namespace fst { namespace
37 if (str == "fst")
53 return "fst";
118 } // namespace fst
H A Dstlist.cc17 #include <fst/extensions/far/stlist.h>
19 namespace fst { namespace
31 } // namespace fst
H A Dstrings.cc17 #include <fst/extensions/far/compile-strings.h>
25 namespace fst { namespace
40 } // namespace fst
H A Dsttable.cc17 #include <fst/extensions/far/sttable.h>
19 namespace fst { namespace
31 } // namespace fst
/external/openfst/src/extensions/ngram/
H A Dbitmap-index.cc17 #include <fst/extensions/ngram/bitmap-index.h>
22 #include <fst/extensions/ngram/nthbit.h>
24 namespace fst { namespace
187 } // end namespace fst
/external/openfst/src/extensions/pdt/
H A Dpdtscript.cc20 // See comments in nlp/fst/script/script-impl.h for how the registration
29 #include <fst/extensions/pdt/compose.h>
30 #include <fst/extensions/pdt/expand.h>
31 #include <fst/extensions/pdt/pdtscript.h>
32 #include <fst/extensions/pdt/replace.h>
33 #include <fst/extensions/pdt/reverse.h>
34 #include <fst/extensions/pdt/shortest-path.h>
35 #include <fst/script/script-impl.h>
37 namespace fst { namespace
115 } // namespace fst
[all...]

Completed in 560 milliseconds

1234567891011>>