HomeSort by relevance Sort by last modified time
    Searched refs:arcs (Results 1 - 25 of 39) 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/chromium/base/
base_gfx.scons 269 '-fprofile-arcs',
273 '-fprofile-arcs'
276 '-fprofile-arcs'
linux_versioninfo.scons 224 '-fprofile-arcs',
228 '-fprofile-arcs'
test_support_base.scons 246 '-fprofile-arcs',
250 '-fprofile-arcs'
test_support_perf.scons 252 '-fprofile-arcs',
256 '-fprofile-arcs'
base_i18n.scons 252 '-fprofile-arcs',
256 '-fprofile-arcs'
base_unittests.scons 330 '-fprofile-arcs',
334 '-fprofile-arcs'
  /external/chromium/net/
net_resources.scons 216 '-fprofile-arcs',
220 '-fprofile-arcs'
net_test_support.scons 252 '-fprofile-arcs',
256 '-fprofile-arcs'
crash_cache.scons 360 '-fprofile-arcs',
364 '-fprofile-arcs'
fetch_client.scons 364 '-fprofile-arcs',
368 '-fprofile-arcs'
fetch_server.scons 364 '-fprofile-arcs',
368 '-fprofile-arcs'
net_perftests.scons 372 '-fprofile-arcs',
376 '-fprofile-arcs'
stress_cache.scons 360 '-fprofile-arcs',
364 '-fprofile-arcs'
  /external/chromium/third_party/icu/
icudata.scons 224 '-fprofile-arcs',
228 '-fprofile-arcs'
  /external/chromium/third_party/libevent/
libevent.scons 220 '-fprofile-arcs',
224 '-fprofile-arcs'
  /external/chromium/third_party/modp_b64/
modp_b64.scons 216 '-fprofile-arcs',
220 '-fprofile-arcs'
  /external/chromium/third_party/zlib/
zlib.scons 218 '-fprofile-arcs',
222 '-fprofile-arcs'
  /external/webkit/WebKitTools/Scripts/
webkitdirs.pm 374 push @coverageSupportOptions, "EXTRA_LINK= \$(EXTRA_LINK) -ftest-coverage -fprofile-arcs";
376 push @coverageSupportOptions, "OTHER_LDFLAGS=\$(OTHER_LDFLAGS) -ftest-coverage -fprofile-arcs -framework AppKit";
    [all...]

Completed in 809 milliseconds

1 2