Home | History | Annotate | Download | only in fst

Lines Matching defs:Arcs

19 // Simple concrete immutable FST whose states and arcs are each stored
41 // States and arcs each implemented by single arrays, templated on the
92 A *Arcs(StateId s) { return arcs_ + states_[s].pos; }
103 data->arcs = arcs_ + states_[s].pos;
111 // States implemented by array *states_ below, arcs by (single) *arcs_.
114 Unsigned pos; // Start of state's arcs in *arcs_
115 Unsigned narcs; // Number of arcs (per state)
132 MappedFile *arcs_region_; // Mapped file for arcs
134 A *arcs_; // Arcs representation
136 size_t narcs_; // Number of arcs (per FST)
165 // Count # of states and arcs.
339 // before writing to compute number of states and arcs.
420 LOG(ERROR) << "Inconsistent number of arcs observed during write";
463 : arcs_(fst.GetImpl()->Arcs(s)),