Searched refs:fst2 (Results 26 - 36 of 36) sorted by relevance

12

/external/openfst/src/include/fst/
H A Drational.h44 template <class A> void Union(RationalFst<A> *fst1, const Fst<A> &fst2);
45 template <class A> void Concat(RationalFst<A> *fst1, const Fst<A> &fst2);
46 template <class A> void Concat(const Fst<A> &fst1, RationalFst<A> *fst2);
119 // Implementation of UnionFst(fst1,fst2)
120 void InitUnion(const Fst<A> &fst1, const Fst<A> &fst2) { argument
124 uint64 props2 = fst2.Properties(kFstProperties, false);
137 fst_tuples_.push_back(make_pair(-2, fst2.Copy()));
141 // Implementation of ConcatFst(fst1,fst2)
142 void InitConcat(const Fst<A> &fst1, const Fst<A> &fst2) { argument
146 uint64 props2 = fst2
[all...]
H A Dcompose.h123 ComposeFstImplBase(const Fst<A> &fst1, const Fst<A> &fst2, argument
129 if (!CompatSymbols(fst2.InputSymbols(), fst1.OutputSymbols())) {
136 SetOutputSymbols(fst2.OutputSymbols());
222 ComposeFstImpl(const FST1 &fst1, const FST2 &fst2,
377 const FST1 &fst1, const FST2 &fst2,
379 : ComposeFstImplBase<Arc>(fst1, fst2, opts),
381 new F(fst1, fst2, opts.matcher1, opts.matcher2)),
406 uint64 fprops2 = fst2.Properties(kFstProperties, false);
464 ComposeFst(const Fst<A> &fst1, const Fst<A> &fst2, argument
466 : ImplToFst<Impl>(CreateBase(fst1, fst2, opt
376 ComposeFstImpl( const FST1 &fst1, const FST2 &fst2, const ComposeFstImplOptions<M1, M2, F, T> &opts) argument
472 ComposeFst(const Fst<A> &fst1, const Fst<A> &fst2, const ComposeFstOptions<A, M, F, T> &opts) argument
482 ComposeFst(const typename M1::FST &fst1, const typename M2::FST &fst2, const ComposeFstImplOptions<M1, M2, F, T> &opts) argument
510 CreateBase2( const typename M1::FST &fst1, const typename M2::FST &fst2, const ComposeFstImplOptions<M1, M2, F, T> &opts) argument
529 CreateBase1(const Fst<A> &fst1, const Fst<A> &fst2, const ComposeFstOptions<A, M, F, T> &opts) argument
537 CreateBase(const Fst<A> &fst1, const Fst<A> &fst2, const CacheOptions &opts) argument
[all...]
H A Ddifference.h72 DifferenceFst(const Fst<A> &fst1, const Fst<A> &fst2, argument
76 ComplementFst<A> cfst(fst2);
90 DifferenceFst(const Fst<A> &fst1, const Fst<A> &fst2, argument
94 ComplementFst<A> cfst(fst2);
H A Dcompose-filter.h170 // ComposeFilter(const FST1 &fst1, const FST2 &fst2,
220 SequenceComposeFilter(const FST1 &fst1, const FST2 &fst2, argument
223 matcher2_(matcher2 ? matcher2 : new M2(fst2, MATCH_INPUT)),
305 AltSequenceComposeFilter(const FST1 &fst1, const FST2 &fst2, argument
308 matcher2_(matcher2 ? matcher2 : new M2(fst2, MATCH_INPUT)),
391 MatchComposeFilter(const FST1 &fst1, const FST2 &fst2, argument
394 matcher2_(matcher2 ? matcher2 : new M2(fst2, MATCH_INPUT)),
494 MultiEpsFilter(const FST1 &fst1, const FST2 &fst2, argument
497 : filter_(fst1, fst2, matcher1, matcher2),
H A Dstate-table.h194 // ComposeStateTable(const Fst<Arc> &fst1, const Fst<Arc> &fst2);
220 StateId state_id2; // State Id on fst2
269 GenericComposeStateTable(const Fst<A> &fst1, const Fst<A> &fst2) {} argument
346 ProductComposeStateTable(const Fst<A> &fst1, const Fst<A> &fst2) argument
350 CountStates(fst2))) { }
379 StringDetComposeStateTable(const Fst<A> &fst1, const Fst<A> &fst2) argument
384 fst2.Properties(props2, true) != props2) {
386 << " fst2 not input deterministic and epsilon-free";
419 DetStringComposeStateTable(const Fst<A> &fst1, const Fst<A> &fst2) argument
424 fst2
457 ErasableComposeStateTable(const Fst<A> &fst1, const Fst<A> &fst2) argument
[all...]
H A Dlookahead-filter.h61 MatchType LookAheadMatchType(const Fst<Arc> &fst1, const Fst<Arc> &fst2) { argument
63 LookAheadMatcher< Fst <Arc> > matcher2(fst2, MATCH_INPUT);
211 LookAheadComposeFilter(const FST1 &fst1, const FST2 &fst2, argument
213 : filter_(fst1, fst2, matcher1, matcher2),
345 PushWeightsComposeFilter(const FST1 &fst1, const FST2 &fst2, argument
347 : filter_(fst1, fst2, matcher1, matcher2),
439 PushLabelsComposeFilter(const FST1 &fst1, const FST2 &fst2, argument
441 : filter_(fst1, fst2, matcher1, matcher2),
605 Matcher2 matcher2_; // Multi-epsilon matcher for fst2
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Drational.h37 template <class A> void Union(RationalFst<A> *fst1, const Fst<A> &fst2);
38 template <class A> void Concat(RationalFst<A> *fst1, const Fst<A> &fst2);
62 // Implementation of UnionFst(fst1,fst2)
63 void InitUnion(const Fst<A> &fst1, const Fst<A> &fst2) { argument
65 uint64 props2 = fst2.Properties(kFstProperties, false);
79 AddFst(-2, &fst2);
84 // Implementation of ConcatFst(fst1,fst2)
85 void InitConcat(const Fst<A> &fst1, const Fst<A> &fst2) { argument
87 uint64 props2 = fst2.Properties(kFstProperties, false);
102 AddFst(-2, &fst2);
[all...]
H A Dcompose.h42 COMPOSE_FST2_RHO = 1ULL<<1, // "Rest" symbol on the input side of fst2.
46 // of fst2.
50 // fst2.
70 COMPOSE_FST2_STRING = 1ULL<<34, // fst2 is a string
72 COMPOSE_FST2_DET = 1ULL<<36, // fst2 is deterministic
106 const Fst<A> &fst2,
108 :CacheImpl<A>(opts), fst1_(fst1.Copy()), fst2_(fst2.Copy()) {
111 uint64 props2 = fst2.Properties(kFstProperties, false);
114 if (!CompatSymbols(fst2.InputSymbols(), fst1.OutputSymbols()))
119 SetOutputSymbols(fst2
105 ComposeFstImplBase(const Fst<A> &fst1, const Fst<A> &fst2, const CacheOptions &opts) argument
344 ComposeFstImpl(const Fst<A> &fst1, const Fst<A> &fst2, const CacheOptions &opts) argument
692 ComposeFst(const Fst<A> &fst1, const Fst<A> &fst2) argument
696 ComposeFst(const Fst<A> &fst1, const Fst<A> &fst2, const ComposeFstOptions<T> &opts) argument
765 Init( const Fst<A> &fst1, const Fst<A> &fst2, const ComposeFstOptions<T> &opts) argument
[all...]
/external/qemu/target-mips/
H A Dop_helper.c2207 uint32_t fst2; local
2211 fst2 = int32_to_float32(dt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
2214 return ((uint64_t)fsth2 << 32) | fst2;
2235 uint32_t fst2; local
2238 fst2 = float64_to_float32(fdt0, &env->active_fpu.fp_status);
2240 return fst2;
2245 uint32_t fst2; local
2248 fst2 = int32_to_float32(wt0, &env->active_fpu.fp_status);
2250 return fst2;
2255 uint32_t fst2; local
2559 uint32_t fst2; local
2580 uint32_t fst2; local
2601 uint32_t fst2; local
2611 uint32_t fst2; local
2634 uint32_t fst2; local
2645 uint32_t fst2; local
2799 helper_float_recip2_s(uint32_t fst0, uint32_t fst2) argument
2812 uint32_t fst2 = fdt2 & 0XFFFFFFFF; local
2834 helper_float_rsqrt2_s(uint32_t fst0, uint32_t fst2) argument
2848 uint32_t fst2 = fdt2 & 0XFFFFFFFF; local
2868 uint32_t fst2; local
2884 uint32_t fst2; local
[all...]
/external/srec/tools/make_cfst/
H A Dmake_cfst.cpp228 fst::StdVectorFst fst2; local
239 fst::Determinize(myCfst, &fst2);
240 ofst = &fst2;
243 fst::ArcSort(&fst2, fst::StdOLabelCompare());
/external/openfst/src/test/
H A Dalgo_test.h817 bool Equiv(const Fst<Arc> &fst1, const Fst<Arc> &fst2) {
820 CHECK(Verify(fst2));
825 return RandEquivalent(fst1, fst2, kNumRandomPaths, kTestDelta, opts);

Completed in 691 milliseconds

12