HomeSort by relevance Sort by last modified time
    Searched refs:Final (Results 26 - 40 of 40) sorted by null

12

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
shortest-path.h 137 if (ifst.Final(s) != Weight::Zero()) {
138 Weight w = Times(sd, ifst.Final(s));
156 ofst->SetFinal(s_p, ifst.Final(f_parent));
256 // the distance to the final state in 'rfst' 'ofst' is built as the
286 StateId final = ofst->AddState(); local
287 ofst->SetFinal(final, Weight::One());
288 while (pairs.size() <= final)
290 pairs[final] = Pair(rfst.Start(), Weight::One());
291 heap.push_back(final);
321 Weight finalw = rfst.Final(p.first).Reverse()
    [all...]
verify.h 98 if (!fst.Final(s).Member()) {
99 LOG(ERROR) << "Verify: Fst final weight of state " << s << " is invalid";
compose.h 137 Weight Final(StateId s) {
139 Weight final = ComputeFinal(s); local
140 SetFinal(s, final);
142 return CacheImpl<A>::Final(s);
481 bool finala = fsta->Final(sa) != Weight::Zero();
633 Weight final = Times(ComposeFstImplBase<A>::fst1_->Final(tuple.state_id1), local
634 ComposeFstImplBase<A>::fst2_->Final(tuple.state_id2));
635 return final;
709 virtual Weight Final(StateId s) const { return impl_->Final(s);
    [all...]
union.h 56 fst1->SetFinal(s1, fst2.Final(s2));
rational.h 202 virtual Weight Final(StateId s) const { return impl_->Final(s); }
vector-fst.h 51 Weight Final(StateId s) const { return states_[s]->final; }
59 void SetFinal(StateId s, Weight w) { states_[s]->final = w; }
165 VectorState() : final(Weight::Zero()), niepsilons(0), noepsilons(0) {}
167 Weight final; // Final weight member in struct:fst::VectorState
214 Weight ow = Final(s);
334 BaseImpl::SetFinal(s, fst.Final(s));
362 state->final.Read(strm);
431 state->final.Write(strm)
    [all...]
connect.h 130 if (fst_->Final(s) != Weight::Zero())
equivalent.h 41 // is reserved for an implicit (non-final) 'dead state' (required for
72 // Convenience function: checks if state with MappedId 's' is final
77 false : (fa.Final(UnMapState(s)) != Weight::Zero());
105 // sets contains both final and non-final states.
156 // Early return if the start states differ w.r.t. being final.
175 // invariant: each block of states contains either final states only
176 // or non-final states only.
test-properties.h 189 if (nfinal > 0) { // final state not last
194 Weight final = fst.Final(s); local
196 if (final != Weight::Zero()) { // final state
197 if (final != Weight::One()) {
202 } else { // non-final state
minimize.h 42 // - final weight
65 // check for final state equivalence
67 const ssize_t xfinal = fst_.Final(x).Hash();
68 const ssize_t yfinal = fst_.Final(y).Hash();
166 // same final weight
199 // - loop over states in fst and split on final, creating two blocks
200 // in the partition corresponding to final, non-final
316 // DFS visitor to compute the height (distance) to final state.
378 // cluster states according to height (distance to final state
    [all...]
cache.h 50 // final weight even if the state is non-final to mark it as
166 state->final = w;
205 // Is the final weight of state s cached?
228 Weight Final(StateId s) const {
230 return state->final;
312 static const uint32 kCacheFinal = 0x0001; // Final weight has been cached
353 CacheState() : final(Weight::Zero()), flags(0), ref_count(0) {}
361 Weight final; // Final weigh member in struct:fst::CacheState
    [all...]
fst.h 128 virtual Weight Final(StateId) const = 0; // State's final weight
  /external/srec/tools/grxmlcompile/
fst-io.h 127 Weight final = fst_.Final(s); local
128 if (final != Weight::Zero() || !output) {
130 if (final != Weight::One()) {
131 *ostrm_ << "\t" << final; local
  /external/webkit/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 136 DecompositionFinal = QChar::Final,
  /ndk/build/core/
definitions.mk 189 # LDFLAGS -> Final linker flags
229 # LOCAL_LDFLAGS will contain the set of final linker flags for the module
392 # Use module-get-static-dependencies to retrieve final list.
404 # Use modulge-get-shared-dependencies to retrieve final list.
508 # Returns : Parent dir or path of $1, with final separator removed.
    [all...]

Completed in 830 milliseconds

12