Searched defs:succ (Results 1 - 16 of 16) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSsaConverter.java247 SsaBasicBlock succ = blocks.get(j);
249 if (needsNewSuccessor(block, succ)) {
250 block.insertNewSuccessor(succ);
263 * @param succ successor node
267 SsaBasicBlock succ) {
273 && succ.getPredecessors().cardinality() > 1;
266 needsNewSuccessor(SsaBasicBlock block, SsaBasicBlock succ) argument
/external/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp152 MachineBasicBlock* succ = *BB->succ_begin(); local
154 MachineBasicBlock::iterator start = succ->begin();
155 while (start != succ->end() && start->isPHI()) {
H A DMachineBasicBlock.cpp482 void MachineBasicBlock::addSuccessor(MachineBasicBlock *succ, uint32_t weight) { argument
492 Successors.push_back(succ);
493 succ->addPredecessor(this);
496 void MachineBasicBlock::removeSuccessor(MachineBasicBlock *succ) { argument
497 succ->removePredecessor(this);
498 succ_iterator I = std::find(Successors.begin(), Successors.end(), succ);
/external/chromium_org/v8/src/
H A Dhydrogen-escape-analysis.cc234 HBasicBlock* succ = block->end()->SuccessorAt(i); local
235 if (!allocate_block->Dominates(succ)) continue;
236 if (succ->predecessors()->length() == 1) {
238 SetStateAt(succ, state);
239 } else if (StateAt(succ) == NULL && succ->IsLoopHeader()) {
242 SetStateAt(succ, NewStateForLoopHeader(succ->first(), state));
243 } else if (StateAt(succ) == NULL) {
246 SetStateAt(succ, NewStateCop
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp105 const ExplodedNode *succ = *(node->succ_begin()); local
106 if (succ->pred_size() != 1)
151 const ProgramPoint SuccLoc = succ->getLocation();
166 ExplodedNode *succ = *(node->succ_begin()); local
167 pred->replaceSuccessor(succ);
168 succ->replacePredecessor(pred);
/external/llvm/include/llvm/Analysis/
H A DRegionIterator.h70 RegionNode *succ; local
71 succ = getNode()->getParent()->getNode(BB);
72 assert(succ && "BB not in Region or entered subregion!");
73 return succ;
H A DDependenceAnalysis.h196 void setNextSuccessor(const Dependence *succ) { argument
197 NextSuccessor = succ;
/external/chromium_org/third_party/bintrees/bintrees/
H A Dctrees.c668 node_t *succ = NULL; local
677 if ((succ == NULL) ||
678 (ct_compare(KEY(node), KEY(succ)) < 0))
679 succ = node;
692 if (succ == NULL)
693 succ = node;
694 else if (ct_compare(KEY(node), KEY(succ)) < 0)
695 succ = node;
697 return succ;
760 node_t *succ local
[all...]
/external/safe-iop/src/
H A Dsafe_iop.c1091 int tests = 0, succ = 0, fail = 0; local
1092 tests++; if (T_div_s8()) succ++; else fail++;
1093 tests++; if (T_div_s16()) succ++; else fail++;
1094 tests++; if (T_div_s32()) succ++; else fail++;
1095 tests++; if (T_div_s64()) succ++; else fail++;
1096 tests++; if (T_div_long()) succ++; else fail++;
1097 tests++; if (T_div_longlong()) succ++; else fail++;
1098 tests++; if (T_div_ssizet()) succ++; else fail++;
1099 tests++; if (T_div_u8()) succ++; else fail++;
1100 tests++; if (T_div_u16()) succ
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-regexp.cc1127 Label fail, succ; local
1142 m.CheckNotBackReferenceIgnoreCase(2, &succ);
1145 m.Bind(&succ);
1542 unibrow::uchar succ[unibrow::Ecma262UnCanonicalize::kMaxWidth]; local
1543 int succ_length = un_canonicalize.get(block_start + i, '\0', succ);
1547 int found = succ[j];
/external/libpcap/
H A Dgencode.h225 struct block *succ; member in struct:edge
329 #define JT(b) ((b)->et.succ)
330 #define JF(b) ((b)->ef.succ)
/external/v8/test/cctest/
H A Dtest-regexp.cc1077 Label fail, succ; local
1092 m.CheckNotBackReferenceIgnoreCase(2, &succ);
1095 m.Bind(&succ);
1490 unibrow::uchar succ[unibrow::Ecma262UnCanonicalize::kMaxWidth]; local
1491 int succ_length = un_canonicalize.get(block_start + i, '\0', succ);
1495 int found = succ[j];
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new.c206 dbus_bool_t succ; local
220 succ = success ? TRUE : FALSE;
221 if (dbus_message_append_args(msg, DBUS_TYPE_BOOLEAN, &succ,
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp14652 MachineBasicBlock* succ = *sItr; local
14653 if (succ->isLiveIn(X86::EFLAGS))
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1250 milliseconds