Home
last modified time | relevance | path

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

/external/llvm-project/llvm/test/Analysis/ScalarEvolution/
Drange_nw_flag.ll11 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
12 %nexti = add nuw i32 %i, 1
13 %index32 = add nuw i32 %nexti, %offset
16 %exitcond = icmp eq i32 %nexti, %numIterations
31 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
32 %nexti = add nuw i32 %i, 1
33 %index32 = add nuw i32 %nexti, %min.10
36 %exitcond = icmp eq i32 %nexti, %numIterations
51 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
52 %nexti = add nsw i32 %i, -1
[all …]
Dflags-from-poison.ll19 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
30 %nexti = add nsw i32 %i, 1
33 %exitcond = icmp eq i32 %nexti, %numIterations
45 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
52 %nexti = add nuw i32 %i, 1
54 %exitcond = icmp eq i32 %nexti, %numIterations
67 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
76 %nexti = add nuw i32 %i, 1
78 %exitcond = icmp eq i32 %nexti, %numIterations
91 %i = phi i32 [ %nexti, %loop ], [ 0, %entry ]
[all …]
/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/python/cpython3/Python/
Dpeephole.c233 Py_ssize_t h, i, nexti, op_start, tgt; in PyCode_Optimize() local
287 for (i=find_op(codestr, codelen, 0) ; i<codelen ; i=nexti) { in PyCode_Optimize()
294 nexti = i + 1; in PyCode_Optimize()
295 while (nexti < codelen && _Py_OPCODE(codestr[nexti]) == EXTENDED_ARG) in PyCode_Optimize()
296 nexti++; in PyCode_Optimize()
297 nextop = nexti < codelen ? _Py_OPCODE(codestr[nexti]) : 0; in PyCode_Optimize()
318 fill_nops(codestr, op_start, nexti + 1); in PyCode_Optimize()
339 j != get_arg(codestr, nexti)) in PyCode_Optimize()
342 fill_nops(codestr, op_start, nexti + 1); in PyCode_Optimize()
345 fill_nops(codestr, op_start + 1, nexti + 1); in PyCode_Optimize()
[all …]
/external/llvm-project/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/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/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-project/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-project/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/android/guava-tests/benchmark/com/google/common/util/concurrent/
DMonitorBasedArrayBlockingQueue.java127 int nexti = inc(i); in removeAt() local
128 if (nexti != putIndex) { in removeAt()
129 items[i] = items[nexti]; in removeAt()
130 i = nexti; in removeAt()
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DMonitorBasedArrayBlockingQueue.java127 int nexti = inc(i); in removeAt() local
128 if (nexti != putIndex) { in removeAt()
129 items[i] = items[nexti]; in removeAt()
130 i = nexti; in removeAt()
/external/llvm-project/llvm/test/Transforms/Scalarizer/
Dbasic.ll17 ; CHECK: %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
22 ; CHECK: %nexti = sub i32 %i, 1
57 ; CHECK: %test = icmp eq i32 %nexti, 0
65 %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
67 %nexti = sub i32 %i, 1
87 %test = icmp eq i32 %nexti, 0
103 ; CHECK: %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
108 ; CHECK: %nexti = sub i32 %i, 1
142 ; CHECK: %test = icmp eq i32 %nexti, 0
150 %i = phi i32 [ %count, %entry ], [ %nexti, %loop ]
[all …]
/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/llvm-project/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/python/cpython2/Doc/library/
Ditertools.rst417 nexti = next(it)
425 if i == nexti:
427 nexti = next(it)
/external/python/cpython3/Doc/library/
Ditertools.rst459 nexti = next(it)
467 if i == nexti:
469 nexti = next(it)
/external/python/cpython2/Lib/test/
Dtest_itertools.py1100 nexti = next(it)
1108 if i == nexti:
1110 nexti = next(it)
/external/llvm-project/llvm/test/CodeGen/X86/
Dbreak-false-dep.ll1577 %phi_i = phi i64 [ 1, %entry ], [ %nexti, %loop_end ]
1595 %nexti = add i64 %phi_i, 1
1600 %nexti_f = sitofp i64 %nexti to double
1610 %done = icmp slt i64 %size, %nexti
/external/python/cpython3/Lib/test/
Dtest_itertools.py1675 nexti = next(it)
1683 if i == nexti:
1685 nexti = next(it)
/external/llvm-project/lldb/docs/use/
Dtutorial.rst494 (lldb) thread step-over-inst // The same as gdb's "nexti" / "ni"
Dmap.rst344 <b>(gdb)</b> nexti