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

1 2

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsum.h 17 // Functions to sum arcs (sum weights) in an fst.
53 // Combines identically labeled arcs, summing weights. For each state
54 // we combine arcs with the same input and output label, summing their
60 vector<A> arcs; local
65 // Sums arcs into arcs array.
66 arcs.clear();
67 arcs.reserve(fst->NumArcs(s));
70 arcs.push_back(aiter.Value());
72 // At each state, first sorts the exiting arcs by input label, output labe
    [all...]
rmfinalepsilon.h 17 // Function to remove of final states that have epsilon only input arcs.
64 vector<A> arcs; local
69 arcs.clear();
74 // sum up all epsilon arcs
78 arcs.push_back(arc);
81 arcs.push_back(arc);
85 // If some arcs (epsilon arcs) were deleted, delete all
86 // arcs and add back only the non epsilon arcs
    [all...]
cache.h 140 cache_first_state_->arcs.capacity() * sizeof(Arc);
172 state->arcs.push_back(arc);
175 // Marks arcs of state s as cached.
178 vector<Arc> &arcs = state->arcs; local
180 for (unsigned int a = 0; a < arcs.size(); ++a) {
181 const Arc &arc = arcs[a];
192 cache_size_ += arcs.capacity() * sizeof(Arc);
200 state->arcs.reserve(n);
217 // Are arcs of state s cached
362 vector<A> arcs; \/\/ Arcs represenation member in struct:fst::CacheState
    [all...]
vector-fst.h 17 // Simple concrete, mutable FST whose states and arcs are stored in STL
33 // States and arcs implemented by STL vectors, templated on the
55 size_t NumArcs(StateId s) const { return states_[s]->arcs.size(); }
72 states_[s]->arcs.push_back(arc);
92 vector<Arc> &arcs = states_[s]->arcs; local
94 for (size_t i = 0; i < arcs.size(); ++i) {
95 StateId t = newid[arcs[i].nextstate];
97 arcs[i].nextstate = t;
99 arcs[narcs] = arcs[i]
168 vector<A> arcs; \/\/ Arcs represenation member in struct:fst::VectorState
291 const vector<A> &arcs = GetState(s)->arcs; local
    [all...]
arcsort.h 17 // Functions and classes to sort arcs in an FST.
29 // Sorts the arcs in an FST according to function object 'comp' of
48 vector<Arc> arcs; local
53 arcs.clear();
57 arcs.push_back(aiter.Value());
58 sort(arcs.begin(), arcs.end(), comp);
60 for (size_t a = 0; a < arcs.size(); ++a)
61 fst->AddArc(s, arcs[a]);
156 vector<A> &carcs = GetState(s)->arcs;
    [all...]
rmepsilon.h 68 // Compute arcs and final weight for state 's'
71 // Returns arcs of expanded state.
72 vector<Arc> &Arcs() { return arcs_; }
121 // in the arcs vector of the state being expanded. 'e' corresponds
129 vector<Arc> arcs_; // Arcs of state being expanded
252 vector<Arc> &arcs = rmeps_state.Arcs(); local
253 while (!arcs.empty()) {
254 fst->AddArc(state, arcs.back());
255 arcs.pop_back()
390 vector<A> &arcs = rmeps_state_.Arcs(); local
    [all...]
fst.h 107 int64 numarcs_; // # of arcs
116 // iterate over its states and arcs).
306 const A *arcs; // O.w. arcs pointer member in struct:fst::ArcIteratorData
343 return data_.base ? data_.base->Value() : data_.arcs[i_];
  /external/openfst/src/include/fst/
rmfinalepsilon.h 19 // Function to remove of final states that have epsilon only input arcs.
70 vector<A> arcs; local
75 arcs.clear();
80 // sum up all epsilon arcs
84 arcs.push_back(arc);
87 arcs.push_back(arc);
91 // If some arcs (epsilon arcs) were deleted, delete all
92 // arcs and add back only the non epsilon arcs
    [all...]
cache.h 203 cache_first_state_->arcs.capacity() * sizeof(Arc);
239 state->arcs.push_back(arc);
246 const Arc *parc = state->arcs.empty() ? 0 : &(state->arcs.back());
261 state->arcs.push_back(arc);
264 // Marks arcs of state s as cached and does cache book-keeping after all
268 vector<Arc> &arcs = state->arcs; local
270 for (size_t a = 0; a < arcs.size(); ++a) {
271 const Arc &arc = arcs[a]
295 const vector<Arc> &arcs = GetState(s)->arcs; local
501 vector<A> arcs; \/\/ Arcs represenation member in struct:fst::CacheState
    [all...]
vector-fst.h 19 // Simple concrete, mutable FST whose states and arcs are stored in STL
39 // States and arcs implemented by STL vectors, templated on the
61 size_t NumArcs(StateId s) const { return states_[s]->arcs.size(); }
78 states_[s]->arcs.push_back(arc);
98 vector<Arc> &arcs = states_[s]->arcs; local
100 for (size_t i = 0; i < arcs.size(); ++i) {
101 StateId t = newid[arcs[i].nextstate];
103 arcs[i].nextstate = t;
105 arcs[narcs] = arcs[i]
174 vector<A> arcs; \/\/ Arcs represenation member in struct:fst::VectorState
257 const vector<A> &arcs = GetState(s)->arcs; local
    [all...]
rmepsilon.h 83 // Compute arcs and final weight for state 's'
86 // Returns arcs of expanded state.
87 vector<Arc> &Arcs() { return arcs_; }
139 // in the arcs vector of the state being expanded. 'e' corresponds
147 vector<Arc> arcs_; // Arcs of state being expanded
303 vector<Arc> &arcs = rmeps_state.Arcs(); local
304 fst->ReserveArcs(state, arcs.size());
305 while (!arcs.empty()) {
306 fst->AddArc(state, arcs.back())
484 vector<A> &arcs = rmeps_state_.Arcs(); local
    [all...]
replace-util.h 110 // Replaces Fsts that have at most 'nstates' states, 'narcs' arcs and
139 size_t narcs; // # of arcs
435 vector<Arc> arcs; local
441 arcs.push_back(arc);
444 for (size_t j = 0; j < arcs.size(); ++j)
445 pfst.AddArc(i, arcs[j]);
replace.h 305 // with dynamic replacable arcs.
518 } else { // Otherwise compute the number of arcs without expanding.
563 // If epsilon_on_replace is false, all input epsilon arcs
564 // are also input epsilons arcs in the underlying machine.
567 // Otherwise, one need to consider that all non-terminal arcs
624 // return the base arc iterator, if arcs have not been computed yet,
625 // extend/recurse for new arcs.
636 // Extend current state (walk arcs one level deep)
654 // Expand all arcs leaving the state
678 // Expand all arcs leaving the stat
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 1187 public Arc[] arcs; field in class:GridLayout.Axis
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 1115 public Arc[] arcs; field in class:GridLayout.Axis
    [all...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/zlib/contrib/puff/
Makefile 13 cc -fprofile-arcs -ftest-coverage -o puft puff.c pufftest.o
  /external/elfutils/libdwfl/
Makefile.am 40 COMPILE.os = $(filter-out -fprofile-arcs, $(filter-out -ftest-coverage, \
  /external/elfutils/libasm/
Makefile.am 40 COMPILE.os = $(filter-out -fprofile-arcs, $(filter-out -ftest-coverage, \
  /external/elfutils/libdw/
Makefile.am 40 COMPILE.os = $(filter-out -fprofile-arcs, $(filter-out -ftest-coverage, \
  /bionic/libc/kernel/arch-mips/asm/
sgiarcs.h 126 enum arcs_memtypes arcs; member in union:linux_memtypes
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgiarcs.h 126 enum arcs_memtypes arcs; member in union:linux_memtypes
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/
sgiarcs.h 126 enum arcs_memtypes arcs; member in union:linux_memtypes
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/
sgiarcs.h 126 enum arcs_memtypes arcs; member in union:linux_memtypes
  /external/elfutils/libelf/
Makefile.am 43 COMPILE.os = $(filter-out -fprofile-arcs, $(filter-out -ftest-coverage, \

Completed in 720 milliseconds

1 2