HomeSort by relevance Sort by last modified time
    Searched refs:Final (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/clang/test/SemaTemplate/
class-template-ctor-initializer.cpp 46 class Final : public Derived<Base> {
52 Final final; local
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
rmfinalepsilon.h 17 // Function to remove of final states that have epsilon only input arcs.
42 // Find potential list of removable final states. These are final states
43 // that have no outgoing transitions or final states that have a
48 if (fst->Final(s) != Weight::Zero()) {
63 // Move the final weight. Complexity O(E)
67 Weight w(fst->Final(s));
76 w = Plus(Times(fst->Final(arc.nextstate), arc.weight), w);
reweight.h 32 // distributive when reweighting towards the final states.
37 // towards the final states.
49 LOG(FATAL) << "Reweight: Reweighting to the final states requires "
82 Divide(fst->Final(state), potential[state], DIVIDE_LEFT));
84 fst->SetFinal(state, Times(potential[state], fst->Final(state)));
104 fst->SetFinal(state, Times(potential[state], fst->Final(state)));
108 fst->Final(state)));
statesort.h 57 Weight final1 = fst->Final(s1), final2 = Weight::Zero();
66 final2 = fst->Final(s2);
randgen.h 34 // transition is selected. If N == NumArcs(), then the final weight at
35 // that state is selected (i.e., the 'super-final' transition is selected).
37 // are transitions leaving the state and/or the state is final.
51 if (fst.Final(s) != Weight::Zero())
77 sum += exp(-fst.Final(s).Value());
136 ifst.Final(opts.source) == Weight::Zero()) // Non-coaccessible
140 if (n == ifst.NumArcs(opts.source)) { // Take 'super-final' transition
equal.h 53 Weight final1 = fst1.Final(s1);
54 Weight final2 = fst2.Final(s2);
56 VLOG(1) << "Equal: mismatched final weights:"
complement.h 32 // completes the (deterministic) FSA and then exchanges final and
33 // non-final states. Completion, i.e. ensuring that all labels can be
75 // Exchange final and non-final states; make rho destination state final.
76 Weight Final(StateId s) const {
77 if (s == 0 || fst_->Final(s - 1) == Weight::Zero())
134 virtual Weight Final(StateId s) const { return impl_->Final(s); }
map.h 28 // This determines how final weights are mapped.
31 // A final weight is mapped into a final weight. An error
35 // A final weight is mapped to an arc to the superfinal state
36 // when the result cannot be represented as a final weight.
40 // A final weight is mapped to an arc to the superfinal state
41 // unless the result can be represented as a final weight of weight
47 // Mapper Interface - class determinies how arcs and final weights
54 // // Specifies final action the mapper requires (see above).
55 // // The mapper will be passed final weights as arcs of th
    [all...]
factor-weight.h 37 bool final_only; // only factor final weights when true
188 Weight Final(StateId s) {
194 : (Weight) Times(e.weight, fst_->Final(e.state));
201 return CacheImpl<A>::Final(s);
278 (fst_->Final(e.state) != Weight::Zero())) {
281 : Times(e.weight, fst_->Final(e.state));
362 virtual Weight Final(StateId s) const { return impl_->Final(s); }
arcsort.h 116 Weight Final(StateId s) {
118 SetFinal(s, fst_->Final(s));
119 return CacheImpl<A>::Final(s);
209 virtual Weight Final(StateId s) const { return impl_->Final(s); }
synchronize.h 106 Weight Final(StateId s) {
109 Weight w = e.state == kNoStateId ? Weight::One() : fst_->Final(e.state);
115 return CacheImpl<A>::Final(s);
230 Weight w = e.state == kNoStateId ? Weight::One() : fst_->Final(e.state);
345 virtual Weight Final(StateId s) const { return impl_->Final(s); }
  /external/chromium/crypto/
signature_creator.h 46 bool Final(std::vector<uint8>* signature);
signature_creator_openssl.cc 39 bool SignatureCreator::Final(std::vector<uint8>* signature) {
signature_creator_win.cc 39 bool SignatureCreator::Final(std::vector<uint8>* signature) {
signature_creator_mac.cc 61 bool SignatureCreator::Final(std::vector<uint8>* signature) {
signature_creator_nss.cc 59 bool SignatureCreator::Final(std::vector<uint8>* signature) {
signature_creator_unittest.cc 33 ASSERT_TRUE(signer->Final(&signature));
  /external/openfst/src/include/fst/
reweight.h 37 // distributive when reweighting towards the final states.
42 // towards the final states.
53 FSTERROR() << "Reweight: Reweighting to the final states requires "
93 fst->SetFinal(state, Divide(fst->Final(state), weight, DIVIDE_LEFT));
96 fst->SetFinal(state, Times(weight, fst->Final(state)));
103 fst->SetFinal(state, Times(Weight::Zero(), fst->Final(state)));
124 fst->SetFinal(state, Times(startweight, fst->Final(state)));
128 fst->Final(state)));
rmfinalepsilon.h 19 // Function to remove of final states that have epsilon only input arcs.
48 // Find potential list of removable final states. These are final states
49 // that have no outgoing transitions or final states that have a
54 if (fst->Final(s) != Weight::Zero()) {
69 // Move the final weight. Complexity O(E)
73 Weight w(fst->Final(s));
82 w = Plus(Times(fst->Final(arc.nextstate), arc.weight), w);
equal.h 56 Weight final1 = fst1.Final(s1);
57 Weight final2 = fst2.Final(s2);
59 VLOG(1) << "Equal: mismatched final weights:"
statesort.h 66 Weight final1 = fst->Final(s1), final2 = Weight::Zero();
75 final2 = fst->Final(s2);
state-map.h 56 // // Specifies state's final weight in result
57 // B::Weight Final(B::StateId s) const;
112 fst->SetFinal(s, mapper->Final(s));
166 ofst->SetFinal(s, mapper->Final(s));
247 Weight Final(StateId s) {
249 SetFinal(s, mapper_->Final(s));
250 return CacheImpl<B>::Final(s);
417 Weight Final(StateId s) const { return fst_.Final(s); }
455 Weight Final(StateId s) const { return fst_.Final(s);
    [all...]
expanded-fst.h 95 typename A::Weight Final(const ExpandedFst<A> &fst, typename A::StateId s) {
96 return fst.Final(s);
state-reachable.h 19 // Class to determine whether a given (final) state can be reached from some
35 // Computes the (final) states reachable from a given state in an FST.
36 // After this visitor has been called, a final state f can be reached
38 // (*isets[s]) is a set of half-open inteval of final state indices
39 // and state2index[f] maps from a final state to its index.
43 // final states must have out-degree 0.
71 if (fst_.Final(s) != Weight::Zero()) {
113 if (index_ >= 0 && fst_.Final(s) != Weight::Zero()) {
135 // Tests reachability of final states from a given state. To test for
136 // reachability from a state s, first do SetState(s). Then a final
    [all...]
  /external/chromium/base/
sha1_portable.cc 25 // sha.Final();
42 void Final();
118 void SecureHashAlgorithm::Final() {
210 sha.Final();

Completed in 430 milliseconds

1 2 3 4 5