Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 243) sorted by relevance

12345678910

/art/runtime/arch/
Dmemcmp16_test.cc24 uint32_t next() { in next() function in RandGen
53 size_t type = r.next() % range_of_tests; in CheckSeparate()
62 count1 = (r.next() % max_length) + min_length; in CheckSeparate()
63 count2 = (r.next() % max_length) + min_length; in CheckSeparate()
67 count1 = (r.next() % max_length) + min_length; in CheckSeparate()
73 count2 = (r.next() % max_length) + min_length; in CheckSeparate()
102 bool fill_same = r.next() % 1 == 1; in CheckSeparate()
106 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF); in CheckSeparate()
110 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF); in CheckSeparate()
113 s2[i] = static_cast<uint16_t>(r.next() & 0xFFFF); in CheckSeparate()
[all …]
/art/compiler/optimizing/
Dssa_builder.cc65 HPhi* next = phi->GetNextEquivalentPhiWithSameType(); in EquivalentPhisCleanup() local
66 if (next != nullptr) { in EquivalentPhisCleanup()
69 if (next->IsLive()) { in EquivalentPhisCleanup()
70 phi->ReplaceWith(next); in EquivalentPhisCleanup()
73 next->ReplaceWith(phi); in EquivalentPhisCleanup()
75 DCHECK(next->GetNextEquivalentPhiWithSameType() == nullptr) in EquivalentPhisCleanup()
89 HInstruction* next = phi->GetNext(); in FixEnvironmentPhis() local
90 if (!phi->IsVRegEquivalentOf(next)) continue; in FixEnvironmentPhis()
91 if (next->AsPhi()->IsDead()) { in FixEnvironmentPhis()
93 next = next->GetNext(); in FixEnvironmentPhis()
[all …]
Dgvn.cc203 Node(HInstruction* instruction, size_t hash_code, Node* next) in Node() argument
204 : instruction_(instruction), hash_code_(hash_code), next_(next) {} in Node()
284 Node* next = node->GetNext(); in DeleteAllImpureWhich() local
287 buckets_[i] = next; in DeleteAllImpureWhich()
289 previous->SetNext(next); in DeleteAllImpureWhich()
294 node = next; in DeleteAllImpureWhich()
486 HInstruction* next = current->GetNext(); in VisitBasicBlock() local
510 current = next; in VisitBasicBlock()
/art/tools/ahat/src/heapdump/
DSite.java157 StackFrame next = frames[depth - 1]; in add() local
161 if (curr.mLineNumber == next.getLineNumber() in add()
162 && curr.mMethodName.equals(next.getMethodName()) in add()
163 && curr.mSignature.equals(next.getSignature()) in add()
164 && curr.mFilename.equals(next.getFilename())) { in add()
170 child = new Site(site, next.getMethodName(), next.getSignature(), in add()
171 next.getFilename(), next.getLineNumber(), inst.getId(), depth - 1); in add()
/art/runtime/
Dmethod_handles.h148 const uint32_t next = (is_range ? first_src_reg_ + arg_index_ : arg_[arg_index_]); in Get() local
151 return shadow_frame_.GetVReg(next); in Get()
155 const uint32_t next = (is_range ? first_src_reg_ + arg_index_ : arg_[arg_index_]); in GetLong() local
158 return shadow_frame_.GetVRegLong(next); in GetLong()
162 const uint32_t next = (is_range ? first_src_reg_ + arg_index_ : arg_[arg_index_]); in GetReference() local
165 return shadow_frame_.GetVRegReference(next); in GetReference()
Dmonitor_pool_test.cc31 uint32_t next() { in next() function in art::RandGen
70 alloc = r.next() % 2 == 0; in TEST_F()
80 size_t index = r.next() % monitors.size(); in TEST_F()
112 size_t index = r.next() % monitors.size(); in TEST_F()
/art/runtime/interpreter/mterp/out/
Dmterp_mips64.S408 GOTO_OPCODE v0 # jump to next instruction
426 GOTO_OPCODE v0 # jump to next instruction
444 GOTO_OPCODE v0 # jump to next instruction
462 GOTO_OPCODE v0 # jump to next instruction
476 GOTO_OPCODE v0 # jump to next instruction
490 GOTO_OPCODE v0 # jump to next instruction
504 GOTO_OPCODE v0 # jump to next instruction
523 GOTO_OPCODE v0 # jump to next instruction
543 GOTO_OPCODE v0 # jump to next instruction
563 GOTO_OPCODE v0 # jump to next instruction
[all …]
Dmterp_arm.S395 GOTO_OPCODE ip @ jump to next instruction
408 FETCH_ADVANCE_INST 1 @ advance to next instr, load rINST
428 GOTO_OPCODE ip @ execute next instruction
446 GOTO_OPCODE ip @ jump to next instruction
464 GOTO_OPCODE ip @ jump to next instruction
481 GOTO_OPCODE ip @ jump to next instruction
498 GOTO_OPCODE ip @ jump to next instruction
515 GOTO_OPCODE ip @ jump to next instruction
534 GOTO_OPCODE ip @ execute next instruction
554 GOTO_OPCODE ip @ jump to next instruction
[all …]
/art/tools/dmtracedump/
Dtracedump.cc139 struct TimedMethod* next; member
549 int32_t next; in countLinesToToken() local
552 next = findNextChar(data, len, '\n'); in countLinesToToken()
553 if (next < 0) return -1; in countLinesToToken()
555 data += next + 1; in countLinesToToken()
556 len -= next + 1; in countLinesToToken()
569 int32_t next; in checkToken() local
576 next = findNextChar(data, len, '\n'); in checkToken()
577 if (next < cmpLen + 1) return -1; in checkToken()
584 return next + 1; in checkToken()
[all …]
/art/tools/
Danalyze-init-failures.py51 raw_line = it.next()
60 raw_line = it.next()
70 raw_line = it.next()
91 raw_line = it.next()
/art/compiler/debug/dwarf/
Ddwarf_test.h47 bool next; member
54 void Check(const char* substr, bool next, const char* at_file, int at_line) { in Check() argument
55 expected_lines_.push_back(ExpectedLine {substr, next, at_file, at_line}); in Check()
128 } else if (expected_line.next) { in CheckObjdumpOutput()
/art/test/080-oom-throw/src/
DMain.java39 InstanceMemEater next; field in Main.InstanceMemEater
89 lastMemEater.next = InstanceMemEater.allocate(); in triggerInstanceOOM()
90 lastMemEater = lastMemEater.next; in triggerInstanceOOM()
/art/runtime/gc/accounting/
Dspace_bitmap_test.cc147 uint32_t next() { in next() function in art::gc::accounting::RandGen
169 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment); in RunTest()
170 bool set = r.next() % 2 == 1; in RunTest()
183 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment); in RunTest()
185 size_t end = offset + RoundDown(r.next() % (remain + 1), kAlignment); in RunTest()
/art/test/444-checker-nce/src/
DMain.java247 private ListElement next; field in ListElement
260 xTail = xTail.next; in isShorter()
261 yTail = yTail.next; in isShorter()
/art/test/923-monitors/src/art/
DTest923.java149 String s = it.next(); in threadTests()
184 String s = it.next(); in threadTests()
200 throw new RuntimeException("Unexpected trailing output, starting with " + it.next()); in threadTests()
208 String t = it.next(); in expect()
/art/disassembler/
Ddisassembler_arm.cc196 uintptr_t next; in Dump() local
207 next = reinterpret_cast<uintptr_t>(disasm_->DecodeT32At(ip, end_address)); in Dump()
210 next = reinterpret_cast<uintptr_t>(disasm_->DecodeA32At(ip)); in Dump()
215 return next - instr_ptr; in Dump()
/art/runtime/interpreter/mterp/mips64/
DfcvtFooter.S18 GOTO_OPCODE v0 # jump to next instruction
Dop_nop.S3 GOTO_OPCODE v0 # jump to next instruction
Dop_sput_wide.S13 PREFETCH_INST 2 # Get next inst, but don't advance rPC
/art/runtime/interpreter/mterp/arm/
Dop_nop.S1 FETCH_ADVANCE_INST 1 @ advance to next instr, load rINST
Dop_sput_wide.S13 PREFETCH_INST 2 @ Get next inst, but don't advance rPC
Dop_sput.S14 PREFETCH_INST 2 @ Get next inst, but don't advance rPC
/art/runtime/interpreter/mterp/mips/
Dop_nop.S3 GOTO_OPCODE(t0) # jump to next instruction
Dop_iput_object_quick.S11 GOTO_OPCODE(t0) # jump to next instruction
/art/test/504-regression-baseline-entry/
Dinfo.txt2 through to the next block.

12345678910