Searched refs:next (Results 1 - 25 of 249) sorted by relevance

12345678910

/art/tools/ahat/src/main/com/android/ahat/heapdump/
H A DSkipNullsIterator.java37 mNext = mIter.next();
43 public T next() { method in class:SkipNullsIterator
47 T next = mNext;
49 return next;
H A DDominatorReferenceIterator.java39 Reference ref = mIter.next();
48 public AhatInstance next() { method in class:DominatorReferenceIterator
50 AhatInstance next = mNext;
52 return next;
/art/runtime/interpreter/mterp/mips64/
H A DfcvtFooter.S3 * from or to a floating-point type and jumps to the next instruction.
18 GOTO_OPCODE v0 # jump to next instruction
H A Dop_nop.S3 GOTO_OPCODE v0 # jump to next instruction
/art/runtime/interpreter/mterp/arm/
H A Dop_nop.S1 FETCH_ADVANCE_INST 1 @ advance to next instr, load rINST
H A Dop_aput_object.S14 GOTO_OPCODE ip @ jump to next instruction
H A Dop_const_16.S7 GOTO_OPCODE ip @ jump to next instruction
H A Dop_const_4.S7 GOTO_OPCODE ip @ execute next instruction
H A Dop_const_high16.S8 GOTO_OPCODE ip @ jump to next instruction
H A Dop_filled_new_array.S19 GOTO_OPCODE ip @ jump to next instruction
H A Dop_iput_object.S11 GOTO_OPCODE ip @ jump to next instruction
H A Dop_iput_object_quick.S10 GOTO_OPCODE ip @ jump to next instruction
H A Dop_monitor_enter.S14 GOTO_OPCODE ip @ jump to next instruction
H A Dop_new_array.S19 GOTO_OPCODE ip @ jump to next instruction
H A Dop_new_instance.S14 GOTO_OPCODE ip @ jump to next instruction
H A Dop_sput.S14 PREFETCH_INST 2 @ Get next inst, but don't advance rPC
20 GOTO_OPCODE ip @ jump to next instruction
H A Dop_sput_object.S11 GOTO_OPCODE ip @ jump to next instruction
H A Dop_sput_wide.S13 PREFETCH_INST 2 @ Get next inst, but don't advance rPC
19 GOTO_OPCODE ip @ jump to next instruction
/art/runtime/interpreter/mterp/mips/
H A Dop_nop.S3 GOTO_OPCODE(t0) # jump to next instruction
H A Dop_aput_object.S14 GOTO_OPCODE(t0) # jump to next instruction
H A Dop_iput_object.S16 GOTO_OPCODE(t0) # jump to next instruction
H A Dop_iput_object_quick.S11 GOTO_OPCODE(t0) # jump to next instruction
H A Dop_new_array.S18 GOTO_OPCODE(t0) # jump to next instruction
/art/runtime/arch/
H A Dmemcmp16_test.cc25 uint32_t next() { function in class:RandGen
54 size_t type = r.next() % range_of_tests;
63 count1 = (r.next() % max_length) + min_length;
64 count2 = (r.next() % max_length) + min_length;
68 count1 = (r.next() % max_length) + min_length;
74 count2 = (r.next() % max_length) + min_length;
103 bool fill_same = r.next() % 2 == 1;
107 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF);
111 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF);
114 s2[i] = static_cast<uint16_t>(r.next()
[all...]
/art/compiler/optimizing/
H A Dssa_builder.cc67 HPhi* next = phi->GetNextEquivalentPhiWithSameType(); local
68 if (next != nullptr) {
71 if (next->IsLive()) {
72 phi->ReplaceWith(next);
75 next->ReplaceWith(phi);
77 DCHECK(next->GetNextEquivalentPhiWithSameType() == nullptr)
91 HInstruction* next = phi->GetNext(); local
92 if (!phi->IsVRegEquivalentOf(next)) continue;
93 if (next->AsPhi()->IsDead()) {
95 next
281 HInstruction* next = aget->GetNext(); local
434 auto next = current; local
617 HInstruction* next = phi->GetNext(); local
[all...]

Completed in 930 milliseconds

12345678910