Searched refs:reachable (Results 1 - 25 of 29) sorted by relevance

12

/external/valgrind/main/gdbserver_tests/
H A Dmcleak.stderr.exp4 expecting details 10 bytes reachable
5 10 bytes in 1 blocks are still reachable in loss record ... of ...
11 expecting details +10 bytes lost, +21 bytes reachable
12 expecting details +65 bytes reachable
14 expecting details +10 bytes reachable
15 expecting details -10 bytes reachable, +10 bytes lost
16 expecting details -10 bytes lost, +10 bytes reachable
17 expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable
21 reachable: 64 bytes in 3 blocks
23 10 bytes in 1 blocks are still reachable i
[all...]
H A Dmcleak.stderrB.exp3 10 bytes in 1 blocks are still reachable in loss record ... of ...
13 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
18 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ...
23 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
28 0 (-10) bytes in 0 (-1) blocks are still reachable in loss record ... of ...
43 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
53 33 (-32) bytes in 1 (-1) blocks are still reachable in loss record ... of ...
H A Dmchelp.stdoutB.exp24 leak_check [full*|summary] [reachable|possibleleak*|definiteleak]
61 leak_check [full*|summary] [reachable|possibleleak*|definiteleak]
/external/valgrind/main/memcheck/tests/
H A Derror_counts.c11 int* reachable __attribute__((unused)); local
49 reachable = malloc(99);
H A Dleak-delta.stderr.exp1 expecting details 10 bytes reachable
2 10 bytes in 1 blocks are still reachable in loss record ... of ...
8 expecting details +10 bytes lost, +21 bytes reachable
14 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
19 expecting details +65 bytes reachable
20 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ...
26 expecting details +10 bytes reachable
27 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
32 expecting details -10 bytes reachable, +10 bytes lost
33 0 (-10) bytes in 0 (-1) blocks are still reachable i
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DCFGReachabilityAnalysis.h12 // is reachable within the CFG.
36 ReachableMap reachable; member in class:clang::CFGReverseBlockReachabilityAnalysis
/external/valgrind/main/memcheck/
H A Dmemcheck.h209 /* Return number of leaked, dubious, reachable and suppressed bytes found by
211 #define VALGRIND_COUNT_LEAKS(leaked, dubious, reachable, suppressed) \
227 reachable = _qzz_reachable; \
231 /* Return number of leaked, dubious, reachable and suppressed bytes found by
233 #define VALGRIND_COUNT_LEAK_BLOCKS(leaked, dubious, reachable, suppressed) \
249 reachable = _qzz_reachable; \
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUnreachableCodeChecker.cpp46 CFGBlocksSet &reachable,
56 CFGBlocksSet reachable, visited; local
81 reachable.insert(CB->getBlockID());
100 if (reachable.count(CB->getBlockID()))
109 FindUnreachableEntryPoints(CB, reachable, visited);
112 if (reachable.count(CB->getBlockID()))
172 CFGBlocksSet &reachable,
178 if (!reachable.count((*I)->getBlockID())) {
179 // If we find an unreachable predecessor, mark this block as reachable so
181 reachable
171 FindUnreachableEntryPoints(const CFGBlock *CB, CFGBlocksSet &reachable, CFGBlocksSet &visited) argument
[all...]
H A DAnalyzerStatsChecker.cpp46 llvm::SmallPtrSet<const CFGBlock*, 256> reachable; local
65 reachable.insert(CB);
79 if (!reachable.count(CB)) {
H A DDeadStoresChecker.cpp71 llvm::BitVector reachable; member in class:__anon3860::ReachableCode
74 : cfg(cfg), reachable(cfg.getNumBlockIDs(), false) {}
79 return reachable[block->getBlockID()];
94 llvm::BitVector::reference isReachable = reachable[block->getBlockID()];
165 // Compute reachable blocks within the CFG for trivial cases
/external/clang/lib/Analysis/
H A DCFGReachabilityAnalysis.cpp12 // is reachable within the CFG.
37 return reachable[DstBlockID][Src->getBlockID()];
46 ReachableSet &DstReachability = reachable[Dst->getBlockID()];
H A DReachableCode.cpp11 // determining reachable blocks within a CFG.
40 DeadCodeScan(llvm::BitVector &reachable) argument
41 : Visited(reachable.size()),
42 Reachable(reachable) {}
128 // It is possible that this block has been marked reachable after
264 // The entry block may have already been marked reachable
273 // Find the reachable blocks from 'Start'.
277 // Look at the successors and mark then reachable.
297 // Scan for reachable blocks from the entrance of the CFG.
299 llvm::BitVector reachable(cf
[all...]
/external/openfst/src/include/fst/
H A Dfstlib.h138 #include <fst/label-reachable.h>
142 #include <fst/state-reachable.h>
H A Dlookahead-matcher.h28 #include <fst/label-reachable.h>
644 LabelReachable<A> reachable(data->First() ?
646 reachable.Relabel(fst, relabel_input);
659 LabelReachable<A> reachable(data->First() ?
661 reachable.RelabelPairs(pairs, avoid_collisions);
681 LabelReachable<A> reachable(data->First());
682 reachable.Relabel(mfst, true);
685 reachable.RelabelPairs(&pairs, true);
689 LabelReachable<A> reachable(data->Second());
690 reachable
[all...]
H A Dlabel-reachable.h35 #include <fst/state-reachable.h>
41 // Stores shareable data for label reachable class copies.
119 // required to ensure a compact representation of the reachable
139 // returned. The optional template argument controls how reachable arc
178 LabelReachable(const LabelReachable<A, S> &reachable) : argument
181 data_(reachable.data_),
182 accumulator_(new S(*reachable.accumulator_)),
185 error_(reachable.error_) {
552 // arcs with reachable labels.
H A Dstate-reachable.h1 // state-reachable.h
35 // Computes the (final) states reachable from a given state in an FST.
155 StateReachable(const StateReachable<A> &reachable) { argument
156 FSTERROR() << "Copy constructor for state reachable class "
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSsaBasicBlock.java100 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;
/external/llvm/lib/Support/
H A Dregengine.inc846 - step - map set of states reachable before char to set reachable after
852 states bef, /* states reachable before */
854 states aft) /* states already known reachable after */
/external/llvm/lib/CodeGen/
H A DMachineVerifier.cpp100 // Is this MBB reachable from the MF entry point?
101 bool reachable; member in struct:__anon9285::MachineVerifier::BBInfo
126 BBInfo() : reachable(false) {}
420 if (!MInfo.reachable) {
421 MInfo.reachable = true;
1127 if (!MInfo.reachable)
1204 if (PrInfo.reachable && !PrInfo.isLiveOut(Reg))
1229 if (!MInfo.reachable)
/external/iproute2/doc/
H A Dip-tunnels.tex122 but address of peering host, which is directly reachable
133 kinds and gateway is required to be directly reachable via this tunnel,
220 reachable over device \verb|tunl0|. With IPv6 the situation is much simpler:
223 Internet is {\em really reachable} via \verb|sit0|! Excellent, the command
H A Dip-cref.tex889 \item \verb|reachable| --- the neighbour entry is valid until the reachability
904 \item \verb|ip neigh chg 10.0.0.3 dev eth0 nud reachable|
906 --- change its state to \verb|reachable|.
982 193.233.7.254 dev eth0 lladdr 00:00:0c:76:3f:85 nud reachable
1001 \item\verb|reachable| --- the neighbour is valid and apparently reachable.
1027 nud reachable
1064 nud reachable
/external/iproute2/ip/
H A Dipntable.c486 __u64 reachable = *(__u64 *)RTA_DATA(tpb[NDTPA_REACHABLE_TIME]); local
487 fprintf(fp, "reachable %llu ", reachable);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
H A Den.stg292 [fatal] rule <ruleName> has non-LL(*) decision due to recursive rule invocations reachable from alts <alts; separator=",">. Resolve by left-factoring or using syntactic predicates or using backtrack=true option.
/external/blktrace/doc/
H A Dblktrace.tex535 not reachable by the hardware and must be bounced to a lower memory
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 587 milliseconds

12