Searched defs:succ (Results 1 - 11 of 11) 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.cpp442 void MachineBasicBlock::addSuccessor(MachineBasicBlock *succ, uint32_t weight) { argument
452 Successors.push_back(succ);
453 succ->addPredecessor(this);
456 void MachineBasicBlock::removeSuccessor(MachineBasicBlock *succ) { argument
457 succ->removePredecessor(this);
458 succ_iterator I = std::find(Successors.begin(), Successors.end(), succ);
/external/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp84 const ExplodedNode *succ = *(node->succ_begin()); local
85 if (succ->pred_size() != 1)
119 const ProgramPoint SuccLoc = succ->getLocation();
134 ExplodedNode *succ = *(node->succ_begin()); local
135 pred->replaceSuccessor(succ);
136 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;
/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/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/dbus/test/
H A Ddecode-gcov.c628 Arc *succ; member in struct:Block
689 arc->succ_next = function->block_graph[source].succ;
690 function->block_graph[source].succ = arc;
727 /* Must reverse the order of all succ arcs, to ensure that they match
733 if (func->block_graph[i].succ)
734 func->block_graph[i].succ = reverse_arcs (func->block_graph[i].succ);
933 current_arc = current_func->block_graph[current_block].succ;
981 current_arc = current_func->block_graph[current_block].succ;
1051 current_arc = current_func->block_graph[current_block].succ;
[all...]
/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.cpp12611 MachineBasicBlock* succ = *sItr; local
12612 if (succ->isLiveIn(X86::EFLAGS))

Completed in 255 milliseconds