/frameworks/base/tools/aapt/tests/ |
CrunchCache_test.cpp | 94 CrunchCache scc(source2,dest2,sff); 96 scc.crunch(scu);
|
/external/openfst/src/include/fst/script/ |
info-impl.h | 135 vector<StateId> scc; local 138 SccVisitor<Arc> scc_visitor(&scc, &access, &coaccess, &props); 152 for (StateId s = 0; s < scc.size(); ++s) { 159 if (scc[s] >= nscc_) 160 nscc_ = scc[s] + 1;
|
/external/openfst/src/include/fst/ |
rmepsilon.h | 276 vector<StateId> scc; local 277 SccVisitor<Arc> scc_visitor(&scc, 0, 0, &props); 279 vector<StateId> first(scc.size(), kNoStateId); 280 vector<StateId> next(scc.size(), kNoStateId); 281 for (StateId i = 0; i < scc.size(); i++) { 282 if (first[scc[i]] != kNoStateId) 283 next[i] = first[scc[i]]; 284 first[scc[i]] = i;
|
queue.h | 435 // SCC topological-order meta-queue discipline, templated on the StateId S 436 // and a queue Q, which is used inside each SCC. It visits the SCC's 438 // to use within an SCC. 445 // Constructor takes a vector specifying the SCC number per state 446 // and a vector giving the queue to use per SCC number. 447 SccQueue(const vector<StateId> &scc, vector<Queue*> *queue) 448 : QueueBase<S>(SCC_QUEUE), queue_(queue), scc_(scc), front_(0), 490 if (front_ < back_) // Queue scc # back_ not empty unless back_==front_ 573 // Find the queue type to use per SCC [all...] |
connect.h | 118 // DFS SCC algorithm (see Aho, et al, "Design and Analysis of Computer 127 // scc[i]: strongly-connected component number for state i. 128 // SCC numbers will be in topological order for acyclic input. 134 SccVisitor(vector<StateId> *scc, vector<bool> *access, 136 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {} 174 // Numbers SCC's in topological order when acyclic. 187 vector<StateId> *scc_; // State's scc number 194 StateId nscc_; // SCC count 197 vector<StateId> *lowlink_; // lowlink[s] == dfnumber[s] => SCC root 198 vector<bool> *onstack_; // is a state on the SCC stac [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
rmepsilon.h | 228 vector<StateId> scc; local 229 SccVisitor<Arc> scc_visitor(&scc, 0, 0, &props); 231 vector<StateId> first(scc.size(), kNoStateId); 232 vector<StateId> next(scc.size(), kNoStateId); 233 for (StateId i = 0; i < (StateId)scc.size(); i++) { 234 if (first[scc[i]] != kNoStateId) 235 next[i] = first[scc[i]]; 236 first[scc[i]] = i;
|
queue.h | 398 // SCC topological-order meta-queue discipline, templated on the StateId S 399 // and a queue Q, which is used inside each SCC. It visits the SCC's 401 // to use within an SCC. 408 // Constructor takes a vector specifying the SCC number per state 409 // and a vector giving the queue to use per SCC number. 410 SccQueue(const vector<StateId> &scc, vector<Queue*> *queue) 411 : QueueBase<S>(SCC_QUEUE), queue_(queue), scc_(scc), front_(0), 457 if (front_ < back_) // Queue scc # back_ not empty unless back_==front_ 535 // Find the queue type to use per SCC [all...] |
connect.h | 28 // DFS SCC algorithm (see Aho, et al, "Design and Analysis of Computer 37 // scc[i]: strongly-connected component number for state i. 38 // SCC numbers will be in topological order for acyclic input. 44 SccVisitor(vector<StateId> *scc, vector<bool> *access, 46 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {} 132 if ((*dfnumber_)[s] == (*lowlink_)[s]) { // root of new SCC 165 // Numbers SCC's in topological order when acyclic. 178 vector<StateId> *scc_; // State's scc number 185 StateId nscc_; // SCC count 188 vector<StateId> *lowlink_; // lowlink[s] == dfnumber[s] => SCC roo [all...] |
/art/runtime/gc/collector/ |
mark_sweep.cc | 1226 SweepCallbackContext scc; local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
code.c | 636 typedef struct SCC { 638 } SCC; 640 static void SCC_init(SCC*, unsigned int); 641 static SCC *SCC_new(unsigned int); 642 static void SCC_destroy(SCC*); 643 static void SCC_delete(SCC*); 644 static void SCC_traverse(SCC*, State*); 647 SCC_init(SCC *s, unsigned int size) 652 static SCC * 654 SCC *s = malloc(sizeof(SCC)) 729 SCC scc; local [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_platform_limits_posix.cc | 78 #include <linux/scc.h> [all...] |