Home
last modified time | relevance | path

Searched refs:nexti (Results 1 – 23 of 23) sorted by relevance

/external/llvm/test/Analysis/ScalarEvolution/
Dflags-from-poison.ll18 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
29 %nexti = add nsw i32 %i, 1
32 %exitcond = icmp eq i32 %nexti, %numIterations
44 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
51 %nexti = add nuw i32 %i, 1
53 %exitcond = icmp eq i32 %nexti, %numIterations
66 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
75 %nexti = add nuw i32 %i, 1
77 %exitcond = icmp eq i32 %nexti, %numIterations
90 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/ScalarEvolution/
Dflags-from-poison.ll18 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
29 %nexti = add nsw i32 %i, 1
32 %exitcond = icmp eq i32 %nexti, %numIterations
44 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
51 %nexti = add nuw i32 %i, 1
53 %exitcond = icmp eq i32 %nexti, %numIterations
66 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
75 %nexti = add nuw i32 %i, 1
77 %exitcond = icmp eq i32 %nexti, %numIterations
90 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
[all …]
/external/python/cpython3/Python/
Dpeephole.c226 Py_ssize_t h, i, nexti, op_start, codelen, tgt; in PyCode_Optimize() local
271 for (i=find_op(codestr, codelen, 0) ; i<codelen ; i=nexti) { in PyCode_Optimize()
278 nexti = i + 1; in PyCode_Optimize()
279 while (nexti < codelen && _Py_OPCODE(codestr[nexti]) == EXTENDED_ARG) in PyCode_Optimize()
280 nexti++; in PyCode_Optimize()
281 nextop = nexti < codelen ? _Py_OPCODE(codestr[nexti]) : 0; in PyCode_Optimize()
296 fill_nops(codestr, op_start, nexti + 1); in PyCode_Optimize()
316 j != get_arg(codestr, nexti)) in PyCode_Optimize()
319 fill_nops(codestr, op_start, nexti + 1); in PyCode_Optimize()
322 fill_nops(codestr, op_start + 1, nexti + 1); in PyCode_Optimize()
[all …]
/external/llvm/test/Transforms/LoopStrengthReduce/
Dsext-ind-var.ll28 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
35 %nexti = add nuw nsw i32 %i, 1
36 %exitcond = icmp eq i32 %nexti, %numIterations
61 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
68 %nexti = add nuw nsw i32 %i, 1
69 %exitcond = icmp eq i32 %nexti, %numIterations
93 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
100 %nexti = add nuw nsw i32 %i, 1
101 %exitcond = icmp eq i32 %nexti, %numIterations
126 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopStrengthReduce/
Dsext-ind-var.ll28 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
35 %nexti = add nuw nsw i32 %i, 1
36 %exitcond = icmp eq i32 %nexti, %numIterations
60 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
67 %nexti = add nuw nsw i32 %i, 1
68 %exitcond = icmp eq i32 %nexti, %numIterations
92 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
99 %nexti = add nuw nsw i32 %i, 1
100 %exitcond = icmp eq i32 %nexti, %numIterations
125 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
[all …]
/external/swiftshader/third_party/LLVM/test/Transforms/IndVarSimplify/
D2009-04-27-Floating.ll10 %i = phi float [ %nexti, %loop_body ], [ 0.0, %entry ]
12 %nexti = fadd float %i, 1.0
14 %less = fcmp olt float %nexti, 2.0
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/IndVarSimplify/
D2009-04-27-Floating.ll14 %i = phi float [ %nexti, %loop_body ], [ 0.0, %entry ]
16 %nexti = fadd float %i, 1.0
18 %less = fcmp olt float %nexti, 2.0
/external/llvm/test/Transforms/IndVarSimplify/
D2009-04-27-Floating.ll14 %i = phi float [ %nexti, %loop_body ], [ 0.0, %entry ]
16 %nexti = fadd float %i, 1.0
18 %less = fcmp olt float %nexti, 2.0
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dr600.alu-limits.ll15 %i = phi i32 [ 100, %entry ], [ %nexti, %loop ]
18 %nexti = sub i32 %i, 1
23 %cond = icmp ne i32 %nexti, 0
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DMonitorBasedArrayBlockingQueue.java136 int nexti = inc(i); in removeAt() local
137 if (nexti != putIndex) { in removeAt()
138 items[i] = items[nexti]; in removeAt()
139 i = nexti; in removeAt()
/external/llvm/test/Transforms/Scalarizer/
Dbasic.ll16 ; CHECK: %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
21 ; CHECK: %nexti = sub i32 %i, 1
56 ; CHECK: %test = icmp eq i32 %nexti, 0
64 %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
66 %nexti = sub i32 %i, 1
86 %test = icmp eq i32 %nexti, 0
102 ; CHECK: %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
107 ; CHECK: %nexti = sub i32 %i, 1
141 ; CHECK: %test = icmp eq i32 %nexti, 0
149 %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Scalarizer/
Dbasic.ll16 ; CHECK: %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
21 ; CHECK: %nexti = sub i32 %i, 1
56 ; CHECK: %test = icmp eq i32 %nexti, 0
64 %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
66 %nexti = sub i32 %i, 1
86 %test = icmp eq i32 %nexti, 0
102 ; CHECK: %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
107 ; CHECK: %nexti = sub i32 %i, 1
141 ; CHECK: %test = icmp eq i32 %nexti, 0
149 %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/NVPTX/
Dload-with-non-coherent-cache.ll202 %i = phi i32 [ 0, %entry ], [ %nexti, %loop ]
207 %nexti = add nsw i32 %i, 1
208 %exitcond = icmp eq i32 %nexti, %n
/external/llvm/test/CodeGen/NVPTX/
Dload-with-non-coherent-cache.ll202 %i = phi i32 [ 0, %entry ], [ %nexti, %loop ]
207 %nexti = add nsw i32 %i, 1
208 %exitcond = icmp eq i32 %nexti, %n
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dbreak-false-dep.ll314 %phi_i = phi i64 [ 1, %entry ], [ %nexti, %loop_end ]
332 %nexti = add i64 %phi_i, 1
340 %nexti_f = sitofp i64 %nexti to double
352 %done = icmp slt i64 %size, %nexti
/external/python/cpython3/Doc/library/
Ditertools.rst442 nexti = next(it)
450 if i == nexti:
452 nexti = next(it)
/external/python/cpython2/Doc/library/
Ditertools.rst417 nexti = next(it)
425 if i == nexti:
427 nexti = next(it)
/external/python/cpython2/Lib/test/
Dtest_itertools.py1100 nexti = next(it)
1108 if i == nexti:
1110 nexti = next(it)
/external/u-boot/arch/powerpc/cpu/mpc85xx/
Dstart.S390 bl nexti /* Find our address */
391 nexti: mflr r1 /* R1 = our PC */ label
/external/python/cpython3/Lib/test/
Dtest_itertools.py1620 nexti = next(it)
1628 if i == nexti:
1630 nexti = next(it)
/external/toolchain-utils/dejagnu/gdb_baseline/
Darmv7a-cros-linux-gnueabi2410 PASS: gdb.base/default.exp: nexti "ni" abbreviation
2411 PASS: gdb.base/default.exp: nexti
7282 PASS: gdb.base/siginfo.exp: backtrace for nexti
7417 PASS: gdb.base/sigstep.exp: backtrace for nexti
7425 PASS: gdb.base/sigstep.exp: nexti from handleri; continue to handler
7426 PASS: gdb.base/sigstep.exp: nexti from handleri; leave handler
7427 PASS: gdb.base/sigstep.exp: nexti from handleri; leave signal trampoline (in main)
7710 PASS: gdb.base/step-test.exp: nexti over function
Dx86_64-cros-linux-gnu2603 PASS: gdb.base/default.exp: nexti "ni" abbreviation
2604 PASS: gdb.base/default.exp: nexti
7664 PASS: gdb.base/siginfo.exp: backtrace for nexti
7799 PASS: gdb.base/sigstep.exp: backtrace for nexti
7807 PASS: gdb.base/sigstep.exp: nexti from handleri; continue to handler
7808 PASS: gdb.base/sigstep.exp: nexti from handleri; leave handler
7809 PASS: gdb.base/sigstep.exp: nexti from handleri; leave signal trampoline (in main)
8090 PASS: gdb.base/step-test.exp: nexti over function
Di686-pc-linux-gnu2369 PASS: gdb.base/default.exp: nexti "ni" abbreviation
2370 PASS: gdb.base/default.exp: nexti
7429 PASS: gdb.base/siginfo.exp: backtrace for nexti
7564 PASS: gdb.base/sigstep.exp: backtrace for nexti
7572 PASS: gdb.base/sigstep.exp: nexti from handleri; continue to handler
7573 PASS: gdb.base/sigstep.exp: nexti from handleri; leave handler
7574 PASS: gdb.base/sigstep.exp: nexti from handleri; leave signal trampoline (in main)
7855 FAIL: gdb.base/step-test.exp: nexti over function