HomeSort by relevance Sort by last modified time
    Searched defs:reachable (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/clang/include/clang/Analysis/Analyses/
CFGReachabilityAnalysis.h 12 // is reachable within the CFG.
36 ReachableMap reachable; member in class:clang::CFGReverseBlockReachabilityAnalysis
  /external/valgrind/memcheck/tests/
error_counts.c 11 int* reachable __attribute__((unused)); local
49 reachable = malloc(99);
  /external/v8/src/compiler/
bytecode-branch-analysis.cc 58 bool reachable = true; local
62 // All bytecode basic blocks are generated to be forward reachable
63 // and may also be backward reachable. Hence if there's a forward
64 // branch targetting here the code becomes reachable.
65 reachable = reachable || forward_branches_target(current_offset);
66 if (reachable) {
74 // reachable. If it targets the next bytecode the check at the
75 // start of the loop will set the reachable flag.
77 reachable = false
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 46 llvm::SmallPtrSet<const CFGBlock*, 256> reachable; local
65 reachable.insert(CB);
79 if (!reachable.count(CB)) {
UnreachableCodeChecker.cpp 46 CFGBlocksSet &reachable,
56 CFGBlocksSet reachable, visited; local
84 reachable.insert(CB->getBlockID());
103 if (reachable.count(CB->getBlockID()))
112 FindUnreachableEntryPoints(CB, reachable, visited);
115 if (reachable.count(CB->getBlockID()))
175 CFGBlocksSet &reachable,
184 if (!reachable.count((*I)->getBlockID())) {
185 // If we find an unreachable predecessor, mark this block as reachable so
187 reachable.insert(CB->getBlockID())
    [all...]
DeadStoresChecker.cpp 69 llvm::BitVector reachable; member in class:__anon7615::ReachableCode
72 : cfg(cfg), reachable(cfg.getNumBlockIDs(), false) {}
77 return reachable[block->getBlockID()];
91 llvm::BitVector::reference isReachable = reachable[block->getBlockID()];
169 // Compute reachable blocks within the CFG for trivial cases
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
FlagManagerTest.java 119 Set<String> reachable = Sets.newHashSet(); local
123 reachable.add(region);
127 unused.removeAll(reachable);
129 for (String region : reachable) {
  /external/bison/src/
state.c 407 | Record S and all states reachable from S in REACHABLE. |
411 state_record_reachable_states (state *s, bitset reachable)
413 if (bitset_test (reachable, s->number))
415 bitset_set (reachable, s->number);
420 state_record_reachable_states (s->transitions->states[i], reachable);
428 bitset reachable = bitset_create (nstates, BITSET_FIXED); local
429 state_record_reachable_states (states[0], reachable);
434 if (bitset_test (reachable, states[i]->number))
448 bitset_free (reachable);
    [all...]
  /external/dhcpcd-6.8.2/
ipv6nd.h 54 uint32_t reachable; member in struct:ra
  /external/iproute2/ip/
ipntable.c 486 unsigned long long reachable = rta_getattr_u64(tpb[NDTPA_REACHABLE_TIME]); local
487 fprintf(fp, "reachable %llu ", reachable);
  /external/selinux/libselinux/src/
get_context_list.c 159 char ** reachable,
246 /* Check for a match in the reachable list. */
247 rc = find_partialcon(reachable, nreach, start);
397 char **reachable = NULL; local
416 /* Determine the set of reachable contexts for the user. */
417 rc = security_compute_user(fromcon, user, &reachable);
421 for (ptr = reachable; *ptr; ptr++)
443 rc = get_context_order(fp, fromcon, reachable, nreach, ordering,
457 rc = get_context_order(fp, fromcon, reachable, nreach, ordering,
477 co[i].con = reachable[i]
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DependencyGraph.java 161 List<ViewData> reachable = new ArrayList<ViewData>(); local
169 findBackwards(view, visiting, reachable, vertical, view);
173 Set<INode> dependents = new HashSet<INode>(reachable.size());
175 for (ViewData v : reachable) {
183 Set<ViewData> visiting, List<ViewData> reachable,
186 reachable.add(view);
206 findBackwards(from, visiting, reachable, vertical, start);
  /toolchain/binutils/binutils-2.25/gold/
gc.h 112 Sections_reachable& reachable = this->section_reloc_map_[src_id]; local
113 reachable.insert(dst_id);
  /dalvik/dx/src/com/android/dx/ssa/
SsaBasicBlock.java 99 private int reachable = -1; field in class:SsaBasicBlock
846 * Returns true if this block was last calculated to be reachable.
849 * @return {@code true} if reachable
852 if (reachable == -1) {
855 return (reachable == 1);
864 reachable = reach;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaBasicBlock.java 100 private int reachable = -1; field in class:SsaBasicBlock
847 * Returns true if this block was last calculated to be reachable.
850 * @return {@code true} if reachable
853 if (reachable == -1) {
856 return (reachable == 1);
865 reachable = reach;
    [all...]
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 99 // Is this MBB reachable from the MF entry point?
100 bool reachable; member in struct:__anon17932::MachineVerifier::BBInfo
125 BBInfo() : reachable(false) {}
460 if (!MInfo.reachable) {
461 MInfo.reachable = true;
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 399 // Mark blocks that dominate all subsequent reachable blocks inside their
406 // dominator_candidate block is guaranteed to dominate all blocks reachable
517 // the BitVector "reachable()" for every block that can be reached
520 // returns the number of reachable blocks.
535 const BitVector* reachable() const { return &reachable_; } function in class:v8::internal::BASE_EMBEDDED
638 DCHECK(!dominator_analyzer.reachable()->Contains(block->block_id()));
909 // branch. However, we must pretend that the "then" branch is reachable,
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/1.3/
haha-1.3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.osgi/3.9.1.v20130814-1242/
org.eclipse.osgi-3.9.1.v20130814-1242.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi_3.9.1.v20140110-1610.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.osgi/3.9.0.v20130529-1710/
org.eclipse.osgi-3.9.0.v20130529-1710.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi_3.9.0.v20130529-1710.jar 

Completed in 676 milliseconds

1 2 3 4