Searched refs:nstates_ (Results 1 - 14 of 14) sorted by relevance

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dconst-fst.h44 : states_(0), arcs_(0), nstates_(0), narcs_(0), start_(kNoStateId) {
60 StateId NumStates() const { return nstates_; }
77 data->nstates = nstates_;
110 StateId nstates_; // Number of states member in class:fst::ConstFstImpl
118 ConstFstImpl<A>::ConstFstImpl(const Fst<A> &fst) : nstates_(0), narcs_(0) {
130 ++nstates_;
137 states_ = new State[nstates_];
140 for (StateId s = 0; s < nstates_; ++s) {
168 impl->nstates_ = hdr.NumStates();
170 impl->states_ = new State[impl->nstates_];
356 StateId nstates_; member in class:fst::StateIterator
[all...]
H A Dconnect.h66 nstates_ = 0;
86 (*dfnumber_)[s] = nstates_;
87 (*lowlink_)[s] = nstates_;
98 ++nstates_;
184 StateId nstates_; // State count member in class:fst::SccVisitor
H A Dmap.h275 nstates_(0) {
285 nstates_(0) {
381 superfinal_ = nstates_++;
433 if (os >= nstates_)
434 nstates_ = os + 1;
446 StateId nstates_; member in class:fst::MapFstImpl
H A Dvector-fst.h674 : nstates_(fst.impl_->NumStates()), s_(0) {}
676 bool Done() const { return s_ >= nstates_; }
685 StateId nstates_; member in class:fst::StateIterator
/external/openfst/src/include/fst/
H A Dconnect.h46 nstates_(0) { }
52 nstates_(0) { }
62 ++nstates_;
95 cc->resize(nstates_, kNoStateId);
97 for (StateId i = 0; i < nstates_; ++i) {
112 StateId nstates_; // State count member in class:fst::CcVisitor
193 StateId nstates_; // State count member in class:fst::SccVisitor
219 nstates_ = 0;
240 (*dfnumber_)[s] = nstates_;
241 (*lowlink_)[s] = nstates_;
[all...]
H A Dconst-fst.h59 : states_region_(0), arcs_region_(0), states_(0), arcs_(0), nstates_(0),
82 StateId NumStates() const { return nstates_; }
97 data->nstates = nstates_;
109 friend class ConstFst<A, U>; // Allow finding narcs_, nstates_ during Write
135 StateId nstates_; // Number of states member in class:fst::ConstFstImpl
153 ConstFstImpl<A, U>::ConstFstImpl(const Fst<A> &fst) : nstates_(0), narcs_(0) {
169 ++nstates_;
176 states_region_ = MappedFile::Allocate(nstates_ * sizeof(*states_));
181 for (StateId s = 0; s < nstates_; ++s) {
213 impl->nstates_
447 StateId nstates_; member in class:fst::StateIterator
[all...]
H A Dcompact-fst.h121 // 'nstates_ + 1' and contains pointers to positions into 'compacts_'.
124 // By convention, 'states_[nstates_] == ncompacts_'.
142 nstates_(0),
176 size_t NumStates() const { return nstates_; }
192 size_t nstates_; member in class:fst::CompactFstData
207 nstates_(0),
220 ++nstates_;
229 states_ = new Unsigned[nstates_ + 1];
232 states_[nstates_] = ncompacts_;
235 ncompacts_ = nstates_ * compacto
1048 StateId nstates_; member in class:fst::StateIterator
[all...]
H A Darc-map.h339 nstates_(0) {
350 nstates_(0) {
360 nstates_(0) {
468 superfinal_ = nstates_++;
529 if (os >= nstates_)
530 nstates_ = os + 1;
542 StateId nstates_; member in class:fst::ArcMapFstImpl
H A Dvector-fst.h513 : nstates_(fst.GetImpl()->NumStates()), s_(0) {}
515 bool Done() const { return s_ >= nstates_; }
524 StateId nstates_; member in class:fst::StateIterator
/external/openfst/src/include/fst/extensions/pdt/
H A Dinfo.h53 int64 NumStates() const { return nstates_; }
64 int64 nstates_; member in class:fst::PdtInfo
81 nstates_(0),
103 ++nstates_;
H A Dshortest-path.h128 nstates_(0),
134 VLOG(1) << "# of search states: " << nstates_;
144 nstates_ = 0;
257 ++nstates_;
289 mutable size_t nstates_; // Total number of search states member in class:fst::PdtShortestPathData
/external/openfst/src/include/fst/script/
H A Dcompile-impl.h61 nstates_(0), keep_state_numbering_(nkeep),
172 states_[n] = nstates_;
173 return nstates_++;
207 StateId nstates_; // number of seen states member in class:fst::FstCompiler
H A Dinfo-impl.h61 nstates_(0), narcs_(0), start_(kNoStateId), nfinal_(0),
93 ++nstates_;
186 int64 NumStates() const { CheckLong(); return nstates_; }
209 int64 nstates_; member in class:fst::FstInfo
/external/srec/tools/grxmlcompile/
H A Dfst-io.h218 nstates_(0), keep_state_numbering_(nkeep) {
324 states_[n] = nstates_;
325 return nstates_++;
358 StateId nstates_; // number of seen states member in class:fst::FstReader

Completed in 130 milliseconds