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

1234567891011

/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 Dfbinop2addr.S19 GOTO_OPCODE(t0) # jump to next instruction
H A Dfunop.S18 GOTO_OPCODE(t1) # jump to next instruction
H A DfunopWider.S19 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
/art/runtime/arch/
H A Dmemcmp16_test.cc24 uint32_t next() { function in class:RandGen
53 size_t type = r.next() % range_of_tests;
62 count1 = (r.next() % max_length) + min_length;
63 count2 = (r.next() % max_length) + min_length;
67 count1 = (r.next() % max_length) + min_length;
73 count2 = (r.next() % max_length) + min_length;
102 bool fill_same = r.next() % 1 == 1;
106 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF);
110 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF);
113 s2[i] = static_cast<uint16_t>(r.next()
[all...]
/art/compiler/optimizing/
H A Dssa_builder.cc63 HPhi* next = phi->GetNextEquivalentPhiWithSameType(); local
64 if (next != nullptr) {
67 if (next->IsLive()) {
68 phi->ReplaceWith(next);
71 next->ReplaceWith(phi);
73 DCHECK(next->GetNextEquivalentPhiWithSameType() == nullptr)
88 HInstruction* next = phi->GetNext(); local
89 if (!phi->IsVRegEquivalentOf(next)) continue;
90 if (next->AsPhi()->IsDead()) {
92 next
282 HInstruction* next = aget->GetNext(); local
427 auto next = current; local
606 HInstruction* next = phi->GetNext(); local
[all...]

Completed in 2287 milliseconds

1234567891011