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

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arc.h 36 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
45 Label ilabel; // Transition input label member in struct:fst::StdArc
60 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
69 Label ilabel; // Transition input label member in struct:fst::LogArc
85 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
98 Label ilabel; // Transition input label member in class:fst::StringArc
117 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
120 : ilabel(arc.ilabel), olabel(arc.ilabel),
132 Label ilabel; \/\/ Transition input label member in struct:fst::GallicArc
157 Label ilabel; \/\/ Transition input label member in struct:fst::ReverseArc
    [all...]
encode.h 50 : ilabel(ilabel_), olabel(olabel_), weight(weight_) {}
52 : ilabel(tuple.ilabel), olabel(tuple.olabel), weight(tuple.weight) {}
54 Label ilabel; member in struct:fst::EncodeTable::Tuple
63 return (x->ilabel == y->ilabel &&
84 int lshift = x->ilabel % kPrime;
86 size_t hash = x->ilabel << lshift;
113 const Tuple tuple(arc.ilabel,
138 WriteType(strm, tuple->ilabel);
    [all...]
rmepsilon.h 79 Label ilabel; member in struct:fst::RmEpsilonState::Element
86 : ilabel(i), olabel(o), nextstate(s) {}
94 e.ilabel * kPrime0 +
106 return (e1.ilabel == e2.ilabel) && (e1.olabel == e2.olabel)
163 Element element(arc.ilabel, arc.olabel, arc.nextstate);
replace.h 323 AddArc(s, A(arc.ilabel, arc.olabel, arc.weight, nextstate));
340 Label ilabel = (opts_.epsilon_on_replace) ? 0 : arc.ilabel; local
341 AddArc(s, A(ilabel, 0, arc.weight, nt_nextstate));
347 AddArc(s, A(arc.ilabel, arc.olabel, arc.weight, nextstate));
  /external/srec/srec/include/
astar.h 62 wordID ilabel; /* input label */ member in struct:arc_token_t
search_network.h 131 labelID ilabel; /* input label */ member in struct:FSMarc_t
  /external/srec/srec/Semproc/src/
SemanticGraphImpl.c 278 wordID ilabel = 0; local
429 ilabel = wordmap_find_index(ilabels, iword);
464 ilabel = MAXwordID;
478 atoken->ilabel = ilabel;
648 if (atoken->ilabel != WORD_EPSILON_LABEL)
659 if (atoken->ilabel != expected_ilabel)
670 if (atoken->ilabel != WORD_EPSILON_LABEL &&
671 !(atoken->ilabel == MAXwordID && atoken->olabel == MAXwordID))
732 if (atok->ilabel == i) break
    [all...]
  /external/srec/srec/crec/
srec.c 386 hmm_info = &rec->context->hmm_info_for_ilabel[fsm_arc->ilabel];
414 if (fsm_arc->ilabel != MAXlabelID)
416 hmm_info = &rec->context->hmm_info_for_ilabel[fsm_arc->ilabel];
894 if (fsm_arc->ilabel >= EPSILON_OFFSET)
912 if (fsm_arc->ilabel == WORD_BOUNDARY && cost_with_wtw >= current_word_threshold) {
930 if (fsm_arc->ilabel == WORD_BOUNDARY) {
1268 labelID ilabel; local
1569 labelID ilabel; local
    [all...]
srec_context.c 66 #define IS_SILENCE_ILABEL(ilabel,context) (ilabel >= context->hmm_ilabel_offset+EPSILON_OFFSET && ilabel<context->hmm_ilabel_offset+EPSILON_OFFSET+NUM_SILENCE_HMMS)
243 if(context->FSMarc_list[i].ilabel == WORD_BOUNDARY)
299 char* hmm_name(modelID ilabel, modelID hmm_ilabel_offset, char* buf)
301 if (ilabel == EPSILON_LABEL)
303 else if (ilabel == WORD_BOUNDARY)
305 else if (ilabel == PHONE_BOUNDARY)
308 sprintf(buf, "hmm%03d", ilabel - hmm_ilabel_offset);
1145 char *ilabel, *olabel; local
    [all...]

Completed in 58 milliseconds