Home
last modified time | relevance | path

Searched refs:arcb (Results 1 – 4 of 4) sorted by relevance

/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dcompose.h431 void AddArc(StateId s, const A &arca, const A &arcb, int f, in AddArc() argument
435 arc.ilabel = arcb.ilabel; in AddArc()
437 arc.weight = Times(arcb.weight, arca.weight); in AddArc()
438 StateTuple tuple(arcb.nextstate, arca.nextstate, f); in AddArc()
442 arc.olabel = arcb.olabel; in AddArc()
443 arc.weight = Times(arca.weight, arcb.weight); in AddArc()
444 StateTuple tuple(arca.nextstate, arcb.nextstate, f); in AddArc()
496 const A &arcb = aiterb.Value(); in OrderedExpand() local
497 Label labelb = find_input ? arcb.olabel : arcb.ilabel; in OrderedExpand()
499 AddArc(s, arca, arcb, 0, find_input); in OrderedExpand()
[all …]
/external/openfst/src/include/fst/
Dlookahead-filter.h294 FilterState LookAheadFilterArc(Arc *arca, Arc *arcb, in LookAheadFilterArc() argument
307 arcb->nextstate) ? f : in LookAheadFilterArc()
547 FilterState PushedLabelFilterArc(Arc *arca, Arc *arcb, in PushedLabelFilterArc() argument
550 const Label &labelb = LookAheadOutput() ? arcb->ilabel : arcb->olabel; in PushedLabelFilterArc()
571 FilterState PushLabelFilterArc(Arc *arca, Arc *arcb, in PushLabelFilterArc() argument
574 const Label &labelb = LookAheadOutput() ? arcb->olabel : arcb->ilabel; in PushLabelFilterArc()
586 arcb->ilabel = larc.ilabel; // Yes, go forward on that arc, in PushLabelFilterArc()
587 arcb->olabel = larc.olabel; // thus pushing the label. in PushLabelFilterArc()
588 arcb->weight = Times(arcb->weight, larc.weight); in PushLabelFilterArc()
589 arcb->nextstate = larc.nextstate; in PushLabelFilterArc()
Dcompose.h316 Arc arcb = arc; in MatchArc() local
318 const FilterState &f = filter_->FilterArc(&arcb, &arca); in MatchArc()
320 AddArc(s, arcb, arca, f); in MatchArc()
322 const FilterState &f = filter_->FilterArc(&arca, &arcb); in MatchArc()
324 AddArc(s, arca, arcb, f); in MatchArc()
Dlabel-reachable.h341 const A &arcb = aiter->Value(); in Reach() local
343 reach_weight_ = accumulator_->Sum(reach_weight_, arcb.weight); in Reach()