/external/openfst/src/script/ |
compose.cc | 44 REGISTER_FST_OPERATION(Compose, LogArc, ComposeArgs1); 47 REGISTER_FST_OPERATION(Compose, LogArc, ComposeArgs2);
|
difference.cc | 43 REGISTER_FST_OPERATION(Difference, LogArc, DifferenceArgs1); 46 REGISTER_FST_OPERATION(Difference, LogArc, DifferenceArgs2);
|
intersect.cc | 43 REGISTER_FST_OPERATION(Intersect, LogArc, IntersectArgs1); 46 REGISTER_FST_OPERATION(Intersect, LogArc, IntersectArgs2);
|
push.cc | 42 REGISTER_FST_OPERATION(Push, LogArc, PushArgs1); 45 REGISTER_FST_OPERATION(Push, LogArc, PushArgs2);
|
randequivalent.cc | 54 REGISTER_FST_OPERATION(RandEquivalent, LogArc, RandEquivalentArgs1); 57 REGISTER_FST_OPERATION(RandEquivalent, LogArc, RandEquivalentArgs2);
|
shortest-path.cc | 45 REGISTER_FST_OPERATION(ShortestPath, LogArc, ShortestPathArgs1); 49 REGISTER_FST_OPERATION(ShortestPath, LogArc, ShortestPathArgs2);
|
compile.cc | 39 REGISTER_FST_OPERATION(CompileFst, LogArc, FstCompileArgs);
|
draw.cc | 51 REGISTER_FST_OPERATION(DrawFst, LogArc, FstDrawerArgs);
|
print.cc | 37 REGISTER_FST_OPERATION(PrintFst, LogArc, FstPrinterArgs);
|
replace.cc | 41 REGISTER_FST_OPERATION(Replace, LogArc, ReplaceArgs);
|
fst-class.cc | 36 REGISTER_FST_CLASSES(LogArc);
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
fst.cpp | 44 REGISTER_FST(VectorFst, LogArc); 46 REGISTER_FST(ConstFst, LogArc);
|
arc.h | 54 struct LogArc { 59 LogArc(Label i, Label o, Weight w, StateId s) 62 LogArc() {}
|
fst-decl.h | 30 class LogArc;
|
randgen.h | 94 typedef LogProbArcSelector<LogArc> LogArcSelector;
|
map.h | 650 // Mapper from StdArc to LogArc. 653 typedef LogArc ToArc; 655 LogArc operator()(const StdArc &arc) const { 656 return LogArc(arc.ilabel, arc.olabel, arc.weight.Value(), arc.nextstate); 665 // Mapper from LogArc to StdArc. 667 typedef LogArc FromArc; 670 StdArc operator()(const LogArc &arc) const {
|
/external/openfst/src/include/fst/ |
matcher-fst.h | 303 // Useful aliases when using StdArc and LogArc. 313 typedef MatcherFst<ConstFst<LogArc>, 314 ArcLookAheadMatcher<SortedMatcher<ConstFst<LogArc> > >, 336 typedef MatcherFst<ConstFst<LogArc>, 337 LabelLookAheadMatcher<SortedMatcher<ConstFst<LogArc> >, 339 FastLogAccumulator<LogArc> >, 341 LabelLookAheadRelabeler<LogArc> > LogILabelLookAheadFst; 350 typedef MatcherFst<ConstFst<LogArc>, 351 LabelLookAheadMatcher<SortedMatcher<ConstFst<LogArc> >, 353 FastLogAccumulator<LogArc> >, [all...] |
fst-decl.h | 44 typedef ArcTpl<LogWeight> LogArc;
|
lookahead-filter.h | 670 // Specializes for LogArc to allow weight and label pushing. 672 class DefaultLookAhead<LogArc, MATCH_INPUT> { 674 typedef LogArc A; 683 // Specializes for LogArc to allow weight and label pushing. 685 class DefaultLookAhead<LogArc, MATCH_OUTPUT> { 687 typedef LogArc A;
|
arc-map.h | 757 typedef WeightConvertMapper<StdArc, LogArc> StdToLogMapper; 758 typedef WeightConvertMapper<LogArc, StdArc> LogToStdMapper; 762 typedef WeightConvertMapper<LogArc, Log64Arc> LogToLog64Mapper; 764 typedef WeightConvertMapper<Log64Arc, LogArc> Log64ToLogMapper; [all...] |
arc.h | 67 typedef ArcTpl<LogWeight> LogArc;
|
/external/openfst/src/test/ |
algo_test.cc | 42 using fst::LogArc; 91 AlgoTester<LogArc, LogWeightGenerator>
|
/external/openfst/src/extensions/far/ |
farscript.cc | 109 REGISTER_FST_FAR_OPERATIONS(LogArc);
|
/external/openfst/src/extensions/pdt/ |
pdtscript.cc | 111 REGISTER_FST_PDT_OPERATIONS(LogArc);
|
/external/openfst/src/include/fst/script/ |
map.h | 88 script::ArcMap(ifst, WeightConvertMapper<Arc, LogArc>()));
|