HomeSort by relevance Sort by last modified time
    Searched defs:ifst1 (Results 1 - 10 of 10) sorted by null

  /external/openfst/src/bin/
fstequal.cc 50 FstClass *ifst1 = FstClass::Read(in1_name); local
51 if (!ifst1) return 1;
56 bool result = s::Equal(*ifst1, *ifst2, FLAGS_delta);
fstcompose.cc 59 FstClass *ifst1 = FstClass::Read(in1_name); local
60 if (!ifst1) return 1;
65 if (ifst1->ArcType() != ifst2->ArcType()) {
70 VectorFstClass ofst(ifst1->ArcType());
90 s::Compose(*ifst1, *ifst2, &ofst, opts);
fstdifference.cc 57 FstClass *ifst1 = FstClass::Read(in1_name); local
58 if (!ifst1) return 1;
62 VectorFstClass ofst(ifst1->ArcType());
82 s::Difference(*ifst1, *ifst2, &ofst, opts);
fstequivalent.cc 60 FstClass *ifst1 = FstClass::Read(in1_name); local
61 if (!ifst1) return 1;
67 return s::Equivalent(*ifst1, *ifst2, FLAGS_delta) ? 0 : 2;
84 *ifst1, *ifst2,
fstintersect.cc 58 FstClass *ifst1 = FstClass::Read(in1_name); local
59 if (!ifst1) return 1;
63 VectorFstClass ofst(ifst1->ArcType());
83 s::Intersect(*ifst1, *ifst2, &ofst, opts);
  /external/openfst/src/extensions/pdt/
pdtcompose.cc 59 s::FstClass *ifst1 = s::FstClass::Read(in1_name); local
60 if (!ifst1) return 1;
72 s::VectorFstClass ofst(ifst1->ArcType());
75 s::PdtCompose(*ifst1, *ifst2, parens, &ofst, copts, FLAGS_left_pdt);
  /external/openfst/src/include/fst/script/
compose.h 32 const Fst<Arc> &ifst1 = *(args->arg1.GetFst<Arc>()); local
36 Compose(ifst1, ifst2, ofst, args->arg4);
46 const Fst<Arc> &ifst1 = *(args->arg1.GetFst<Arc>()); local
50 Compose(ifst1, ifst2, ofst, args->arg4);
53 void Compose(const FstClass &ifst1, const FstClass &ifst2,
57 void Compose(const FstClass &ifst1, const FstClass &ifst2,
difference.h 33 const Fst<Arc> &ifst1 = *(args->arg1.GetFst<Arc>()); local
37 Difference(ifst1, ifst2, ofst, args->arg4);
45 const Fst<Arc> &ifst1 = *(args->arg1.GetFst<Arc>()); local
49 Difference(ifst1, ifst2, ofst, args->arg4);
53 void Difference(const FstClass &ifst1, const FstClass &ifst2,
57 void Difference(const FstClass &ifst1, const FstClass &ifst2,
intersect.h 33 const Fst<Arc> &ifst1 = *(args->arg1.GetFst<Arc>()); local
37 Intersect(ifst1, ifst2, ofst, args->arg4);
45 const Fst<Arc> &ifst1 = *(args->arg1.GetFst<Arc>()); local
49 Intersect(ifst1, ifst2, ofst, args->arg4);
52 void Intersect(const FstClass &ifst1, const FstClass &ifst2,
  /external/openfst/src/include/fst/extensions/pdt/
pdtscript.h 56 const Fst<Arc> &ifst1 = *(args->arg1.GetFst<Arc>()); local
69 Compose(ifst1, parens, ifst2, ofst, args->arg5);
71 Compose(ifst1, ifst2, parens, ofst, args->arg5);
75 void PdtCompose(const FstClass & ifst1,

Completed in 868 milliseconds