Home
last modified time | relevance | path

Searched refs:exits (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/external/javassist/src/main/javassist/bytecode/analysis/
DControlFlow.java91 for (int k = 0; k < b.exits(); k++) { in ControlFlow()
164 BasicBlock[] exits(Node n) { return n.block.getExit(); } in dominatorTree()
212 BasicBlock[] exits(Node n) { return n.block.entrances; } in postDominatorTree()
219 if (nodes[i].block.exits() == 0) in postDominatorTree()
229 if (nodes[i].block.exits() == 0) in postDominatorTree()
311 public int exits() { return exit == null ? 0 : exit.length; } in exits() method in ControlFlow.Block
341 abstract BasicBlock[] exits(Node n); in exits() method in ControlFlow.Access
409 BasicBlock[] exits = access.exits(this); in makeDepth1stTree() local
410 if (exits != null) in makeDepth1stTree()
411 for (int i = 0; i < exits.length; i++) { in makeDepth1stTree()
[all …]
/external/python/cpython2/Lib/
Dcontextlib.py105 exits = []
113 exits.append(exit)
118 while exits:
119 exit = exits.pop()
/external/llvm-project/clang/test/SemaObjC/
Dstrong-in-c-struct.m30 Strong x; // expected-note {{jump exits scope of variable with non-trivial destructor}}
53 …Strong x; // expected-note {{jump exits scope of variable with non-trivial destructor}} expected-n…
72 …(void)(Strong){ .a = x }; // expected-note {{jump exits lifetime of a compound literal that is non…
/external/crosvm/kvm/tests/
Dread_only_memory.rs86 let mut exits = 0; in test_run() localVariable
99 exits += 1; in test_run()
107 assert_eq!(exits, 1); in test_run()
/external/llvm-project/llvm/test/Transforms/LoopSimplify/
Dpreserve-scev.ll19 ; CHECK: Loop %for.cond: <multiple exits> Unpredictable backedge-taken count.
31 ; CHECK: Loop %for.cond: <multiple exits> Unpredictable backedge-taken count.
34 ; CHECK: Loop %for.cond.outer: <multiple exits> Unpredictable backedge-taken count.
85 ; CHECK: Loop %while.cond191: <multiple exits> Unpredictable backedge-taken count.
88 ; CHECK: Loop %while.cond191.outer: <multiple exits> Unpredictable backedge-taken count.
95 ; CHECK: Loop %while.cond191: <multiple exits> backedge-taken count is 0
98 ; CHECK: Loop %while.cond191.outer: <multiple exits> Unpredictable backedge-taken count.
Dbasictest.ll92 ; Check that we leave already dedicated exits alone when forming dedicated exit
153 ; Check that we form what dedicated exits we can even when some exits are
154 ; reached via indirectbr which precludes forming dedicated exits.
/external/bc/src/
Dparse.c162 bc_vec_popAll(&p->exits); in bc_parse_reset()
182 bc_vec_free(&p->exits); in bc_parse_free()
206 bc_vec_init(&p->exits, sizeof(BcInstPtr), NULL); in bc_parse_init()
/external/llvm/test/Analysis/ScalarEvolution/
Dmax-trip-count.ll42 ; CHECK: Loop %for.cond: <multiple exits> Unpredictable backedge-taken count.
104 ; CHECK: Loop %for.body.i: <multiple exits> Unpredictable backedge-taken count.
130 ; CHECK: Loop %for.body: <multiple exits> Unpredictable backedge-taken count.
160 ; CHECK: Loop %for.body.i: <multiple exits> Unpredictable backedge-taken count.
185 ; This loop has two must-exits, both of which dominate the latch. The
189 ; CHECK: Loop %for.body.i: <multiple exits> Unpredictable backedge-taken count.
/external/llvm-project/llvm/test/Analysis/ScalarEvolution/
Dexact_iter_count.ll8 ; CHECK-NEXT: Loop %loop: <multiple exits> backedge-taken count is 50
33 ; CHECK-NEXT: Loop %loop: <multiple exits> backedge-taken count is 50
/external/python/cpython2/Doc/library/
Dthread.rst55 returns, the thread silently exits. When the function terminates with an
56 unhandled exception, a stack trace is printed and then the thread exits (but
93 may be recycled when a thread exits and another thread is created.
168 * When the main thread exits, it is system defined whether the other threads
173 * When the main thread exits, it does not do any of its usual cleanup (except
/external/llvm-project/llvm/test/Transforms/UnifyLoopExits/
Dswitch.ll2 ; RUN: opt < %s -unify-loop-exits -enable-new-pm=0 -S | FileCheck %s
3 ; RUN: opt < %s -passes='lowerswitch,unify-loop-exits' -S | FileCheck %s
Dnested.ll2 ; RUN: opt < %s -unify-loop-exits -enable-new-pm=0 -S | FileCheck %s
3 ; RUN: opt < %s -passes='lowerswitch,unify-loop-exits' -S | FileCheck %s
/external/llvm/test/Transforms/IndVarSimplify/
Dloop_evaluate10.ll4 ; This loop has multiple exits, and the value of %b1 depends on which
9 ; loop exits have the same exit value. We could handle some cases,
/external/python/cpython3/Doc/library/
D_thread.rst50 When the function returns, the thread silently exits.
55 printed and then the thread exits (but other threads continue to run).
99 may be recycled when a thread exits and another thread is created.
207 * When the main thread exits, it is system defined whether the other threads
212 * When the main thread exits, it does not do any of its usual cleanup (except
/external/llvm-project/llvm/test/Transforms/LCSSA/
Dindirectbr.ll3 ; LCSSA should work correctly in the case of an indirectbr that exits
4 ; the loop, and the loop has exits with predecessors not within the loop
545 ; create PHIs in one of such exits we are also inserting PHIs in L2 header. This
547 ; in L2 exits. Test that we don't assert/crash on that.
/external/llvm/test/Transforms/LCSSA/
Dindirectbr.ll3 ; LCSSA should work correctly in the case of an indirectbr that exits
4 ; the loop, and the loop has exits with predecessors not within the loop
545 ; create PHIs in one of such exits we are also inserting PHIs in L2 header. This
547 ; in L2 exits. Test that we don't assert/crash on that.
/external/tensorflow/tensorflow/python/autograph/pyct/
Dcfg.py318 self.exits = {}
452 self.exits[section_id].add(node)
493 assert section_id not in self.exits
494 self.exits[section_id] = set()
500 for exit_ in self.exits[section_id]:
503 del self.exits[section_id]
/external/llvm-project/llvm/test/tools/llvm-ar/
Dinvalid-command-line.test1 Test that llvm-ar exits with 1 when there is an error.
/external/llvm-project/compiler-rt/test/fuzzer/
Dvalue-profile-cmp2.test2 FIXME: Make libFuzzer handle exits without ASan properly on Windows.
/external/llvm-project/compiler-rt/test/tsan/Darwin/
Dobjc-simple.mm1 // Test that a simple Obj-C program runs and exits without any warnings.
/external/compiler-rt/test/tsan/Darwin/
Dobjc-simple.mm1 // Test that a simple Obj-C program runs and exits without any warnings.
/external/llvm-project/lld/test/ELF/
Dbasic-ppc.s6 # exits with return code 42 on FreeBSD
/external/llvm-project/llvm/docs/CommandGuide/
Dllvm-install-name-tool.rst73 :program:`llvm-install-name-tool` exits with a non-zero exit code if there is an error.
74 Otherwise, it exits with code 0.
/external/libwebsockets/minimal-examples/crypto/minimal-crypto-jws/
DREADME.md58 and the tool exits with a 0 exit code. Otherwise nothing is output on stdout
59 and it exits with a nonzero exit code.
/external/linux-kselftest/tools/testing/selftests/ftrace/
DREADME52 * PASS: The test succeeded as expected. The test which exits with 0 is
55 * FAIL: The test failed, but was expected to succeed. The test which exits

12345678910>>...15