/art/runtime/arch/ |
D | memcmp16_test.cc | 25 uint32_t next() { in next() function in RandGen 54 size_t type = r.next() % range_of_tests; in CheckSeparate() 63 count1 = (r.next() % max_length) + min_length; in CheckSeparate() 64 count2 = (r.next() % max_length) + min_length; in CheckSeparate() 68 count1 = (r.next() % max_length) + min_length; in CheckSeparate() 74 count2 = (r.next() % max_length) + min_length; in CheckSeparate() 103 bool fill_same = r.next() % 2 == 1; in CheckSeparate() 107 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF); in CheckSeparate() 111 s1[i] = static_cast<uint16_t>(r.next() & 0xFFFF); in CheckSeparate() 114 s2[i] = static_cast<uint16_t>(r.next() & 0xFFFF); in CheckSeparate() [all …]
|
/art/compiler/optimizing/ |
D | ssa_builder.cc | 70 HPhi* next = phi->GetNextEquivalentPhiWithSameType(); in EquivalentPhisCleanup() local 71 if (next != nullptr) { in EquivalentPhisCleanup() 74 if (next->IsLive()) { in EquivalentPhisCleanup() 75 phi->ReplaceWith(next); in EquivalentPhisCleanup() 78 next->ReplaceWith(phi); in EquivalentPhisCleanup() 80 DCHECK(next->GetNextEquivalentPhiWithSameType() == nullptr) in EquivalentPhisCleanup() 94 HInstruction* next = phi->GetNext(); in FixEnvironmentPhis() local 95 if (!phi->IsVRegEquivalentOf(next)) continue; in FixEnvironmentPhis() 96 if (next->AsPhi()->IsDead()) { in FixEnvironmentPhis() 98 next = next->GetNext(); in FixEnvironmentPhis() [all …]
|
D | prepare_for_register_allocation.cc | 55 HInstruction* next = check->GetNext(); in VisitNullCheck() local 59 while (next->IsBoundType()) { in VisitNullCheck() 60 next = next->GetNext(); in VisitNullCheck() 61 VisitBoundType(next->GetPrevious()->AsBoundType()); in VisitNullCheck() 63 if (next->CanDoImplicitNullCheckOn(check->InputAt(0))) { in VisitNullCheck()
|
D | gvn.cc | 188 Node(HInstruction* instruction, size_t hash_code, Node* next) in Node() argument 189 : 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() 488 HInstruction* next = current->GetNext(); in VisitBasicBlock() local 518 current = next; in VisitBasicBlock()
|
/art/runtime/ |
D | subtype_check_info.h | 247 BitStringChar next = GetNext(); in CreateChild() local 248 if (next != next.MaximumValue()) { in CreateChild() 250 OverwriteNextValueFromParent(/*inout*/&child, next); in CreateChild() 253 SetNext(next + 1u); in CreateChild() 319 bool MaybeGetNext(/*out*/BitStringChar* next) const { in MaybeGetNext() 320 DCHECK(next != nullptr); in MaybeGetNext() 323 *next = GetBitString()[depth_]; in MaybeGetNext() 331 SubtypeCheckInfo(BitString path_to_root, BitStringChar next, bool overflow, size_t depth) { in SubtypeCheckInfo() 349 SetNext(next); in SubtypeCheckInfo() 351 DCHECK_EQ(next, GetNext()); in SubtypeCheckInfo() [all …]
|
D | monitor_pool_test.cc | 31 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()
|
D | fault_handler.cc | 143 GeneratedCodeRange* next = (i + 1u != kNumLocalGeneratedCodeRanges) in Init() local 146 generated_code_ranges_storage_[i].next.store(next, std::memory_order_relaxed); in Init() 197 GeneratedCodeRange* next_range = range->next.load(std::memory_order_relaxed); in Shutdown() 281 range = range->next.load(std::memory_order_relaxed); in CheckForUnrecognizedImplicitSuspendCheckInBootImage() 357 free_generated_code_ranges_ = range->next.load(std::memory_order_relaxed); in CreateGeneratedCodeRange() 358 range->next.store(nullptr, std::memory_order_relaxed); in CreateGeneratedCodeRange() 372 range->next.store(free_generated_code_ranges_, std::memory_order_relaxed); in FreeGeneratedCodeRange() 386 new_range->next.store(old_head, std::memory_order_relaxed); in AddGeneratedCodeRange() 417 before = &range->next; in RemoveGeneratedCodeRange() 421 GeneratedCodeRange* next = range->next.load(std::memory_order_relaxed); in RemoveGeneratedCodeRange() local [all …]
|
D | method_handles-inl.h | 59 const uint32_t next = operands_->GetOperand(operand_index_); in Next() local 61 return next; in Next() 65 const uint32_t next = operands_->GetOperand(operand_index_); in NextLong() local 67 return next; in NextLong()
|
/art/tools/ahat/src/main/com/android/ahat/heapdump/ |
D | SkipNullsIterator.java | 37 mNext = mIter.next(); in hasNext() 43 public T next() { in next() method in SkipNullsIterator 47 T next = mNext; in next() local 49 return next; in next()
|
D | DominatorReferenceIterator.java | 41 Reference ref = mIter.next(); in hasNext() 50 public AhatInstance next() { in next() method in DominatorReferenceIterator 52 AhatInstance next = mNext; in next() local 54 return next; in next()
|
/art/test/1980-obsolete-object-cleared/src/ |
D | Main.java | 79 public Object[] next() { in next() method in Main.BaseResetIter 256 private ResetIterator<Object[]> next; 262 public Object[] next() { 263 if (!next.hasNext()) { 264 cur = my_vals.next(); 266 if (next != null) { 267 next.reset(); 272 cur = my_vals.next(); 274 Object[] nv = next.next(); 284 return next.hasNext() || my_vals.hasNext(); [all …]
|
/art/test/1922-owned-monitors-info/ |
D | owned_monitors.cc | 44 static bool doCallRunnable(JNIEnv* env, jobject next) { in doCallRunnable() argument 53 env->CallVoidMethod(next, run); in doCallRunnable() 58 JNIEnv* env, jobject thiz, jobject next) { in Java_art_Test1922_00024Target_lockThisNative() argument 62 if (doCallRunnable(env, next)) { in Java_art_Test1922_00024Target_lockThisNative() 71 JNIEnv* env, [[maybe_unused]] jobject thiz, jobject mon, jobject next) { in Java_art_Test1922_00024Target_lockNative() argument 75 if (doCallRunnable(env, next)) { in Java_art_Test1922_00024Target_lockNative()
|
/art/runtime/interpreter/mterp/armng/ |
D | other.S | 13 GOTO_OPCODE ip @ jump to next instruction 22 GOTO_OPCODE ip @ jump to next instruction 31 GOTO_OPCODE ip @ execute next instruction 41 GOTO_OPCODE ip @ jump to next instruction 100 GOTO_OPCODE ip @ jump to next instruction 112 GOTO_OPCODE ip @ jump to next instruction 126 GOTO_OPCODE ip @ jump to next instruction 139 GOTO_OPCODE ip @ jump to next instruction 152 GOTO_OPCODE ip @ jump to next instruction 169 GOTO_OPCODE ip @ jump to next instruction [all …]
|
D | arithmetic.S | 34 GOTO_OPCODE ip @ jump to next instruction 67 GOTO_OPCODE ip @ jump to next instruction 97 GOTO_OPCODE ip @ jump to next instruction 133 GOTO_OPCODE ip @ jump to next instruction 172 GOTO_OPCODE ip @ jump to next instruction 207 GOTO_OPCODE ip @ jump to next instruction 228 GOTO_OPCODE ip @ jump to next instruction 252 GOTO_OPCODE ip @ jump to next instruction 275 GOTO_OPCODE ip @ jump to next instruction 297 GOTO_OPCODE ip @ jump to next instruction [all …]
|
D | array.S | 26 GOTO_OPCODE ip @ jump to next instruction 34 GOTO_OPCODE ip @ jump to next instruction 42 GOTO_OPCODE ip @ jump to next instruction 100 GOTO_OPCODE ip @ jump to next instruction 133 GOTO_OPCODE ip @ jump to next instruction 147 GOTO_OPCODE ip @ jump to next instruction
|
/art/runtime/jit/ |
D | debugger_interface.cc | 284 static void InsertNewEntry(const JITCodeEntry* entry, const JITCodeEntry* next) { in InsertNewEntry() argument 287 const JITCodeEntry* prev = (next != nullptr ? next->prev_ : descriptor.tail_); in InsertNewEntry() 289 writable->next_ = next; in InsertNewEntry() 293 if (next != nullptr) { in InsertNewEntry() 294 NativeInfo::Writable(next)->prev_ = entry; in InsertNewEntry() 340 const JITCodeEntry* next = descriptor.head_.load(kNonRacingRelaxed); // Insert at the head. in CreateJITCodeEntryInternal() local 342 next = nullptr; // Insert zygote entries at the tail. in CreateJITCodeEntryInternal() 360 InsertNewEntry<NativeInfo>(entry, next); in CreateJITCodeEntryInternal() 378 const JITCodeEntry* next = entry->next_.load(kNonRacingRelaxed); in DeleteJITCodeEntryInternal() local 380 if (next != nullptr) { in DeleteJITCodeEntryInternal() [all …]
|
/art/test/1922-owned-monitors-info/src/art/ |
D | Test1922.java | 194 for (Function<Runnable, Runnable> r1 = li1.next(); li1.hasNext(); r1 = li1.next()) { in runTestsOtherThread() 197 for (Function<Runnable, Runnable> r2 = li2.next(); li2.hasNext(); r2 = li2.next()) { in runTestsOtherThread() 200 for (Function<Runnable, Runnable> r3 = li3.next(); li3.hasNext(); r3 = li3.next()) { in runTestsOtherThread() 238 for (Function<Runnable, Runnable> r1 = li1.next(); li1.hasNext(); r1 = li1.next()) { in runTestsCurrentThread() 241 for (Function<Runnable, Runnable> r2 = li2.next(); li2.hasNext(); r2 = li2.next()) { in runTestsCurrentThread() 244 for (Function<Runnable, Runnable> r3 = li3.next(); li3.hasNext(); r3 = li3.next()) { in runTestsCurrentThread()
|
/art/runtime/interpreter/mterp/riscv64/ |
D | main.S | 519 …y="t2", fp="t0", refs="t1", z0="t4", z1="t5", D="s0", F="s4", J="s5", L="s8", next=".Lentry_fargs") 523 …y="t2", fp="t0", refs="t1", z0="t4", z1="t5", D="s0", F="s4", J="s5", L="s8", next=".Lentry_fargs") 524 …y="t2", fp="t0", refs="t1", z0="t4", z1="t5", D="s0", F="s4", J="s5", L="s8", next=".Lentry_fargs") 525 …y="t2", fp="t0", refs="t1", z0="t4", z1="t5", D="s0", F="s4", J="s5", L="s8", next=".Lentry_fargs") 526 …y="t2", fp="t0", refs="t1", z0="t4", z1="t5", D="s0", F="s4", J="s5", L="s8", next=".Lentry_fargs") 527 …y="t2", fp="t0", refs="t1", z0="t4", z1="t5", D="s0", F="s4", J="s5", L="s8", next=".Lentry_fargs") 528 …y="t2", fp="t0", refs="t1", z0="t4", z1="t5", D="s0", F="s4", J="s5", L="s8", next=".Lentry_fargs") 537 …y="t2", fp="t4", refs="t1", z0="t5", z1="t6", D="s0", F="s4", J="s5", L="s8", next=".Lentry_fargs") 543 …0", offset="t2", shorty="t1", fp="t0", z0="t3", z1="t4", D="s0", F="s4", J="s5", next=".Lentry_go") 544 …1", offset="t2", shorty="t1", fp="t0", z0="t3", z1="t4", D="s0", F="s4", J="s5", next=".Lentry_go") [all …]
|
/art/tools/ |
D | analyze-init-failures.py | 51 raw_line = it.next() 60 raw_line = it.next() 70 raw_line = it.next() 91 raw_line = it.next()
|
/art/compiler/debug/dwarf/ |
D | dwarf_test.h | 49 bool next; member 56 void Check(const char* substr, bool next, const char* at_file, int at_line) { in Check() argument 57 expected_lines_.push_back(ExpectedLine {substr, next, at_file, at_line}); in Check() 135 if (expected.next && it != actual_line) { in CheckObjdumpOutput()
|
/art/test/1987-structural-redefine-recursive-stack-scope/src/ |
D | Main.java | 70 final Runnable next = res; in main() local 75 results[id] = NativeFieldScopeCheck(f, next).invokeExact(); in main()
|
/art/tools/dexanalyze/ |
D | dexanalyze_bytecode.cc | 376 auto next = std::next(inst); in ProcessCodeItem() local 377 if (next != code_item.end()) { in ProcessCodeItem() 379 next->Opcode() == Instruction::MOVE_RESULT || in ProcessCodeItem() 380 next->Opcode() == Instruction::MOVE_RESULT_WIDE || in ProcessCodeItem() 381 next->Opcode() == Instruction::MOVE_RESULT_OBJECT; in ProcessCodeItem() 383 dest_reg = next->VRegA_11x(); in ProcessCodeItem() 476 auto next = std::next(inst); in ProcessCodeItem() local 477 if (next != code_item.end() && next->Opcode() == Instruction::INVOKE_DIRECT) { in ProcessCodeItem() 479 uint32_t arg_count = next->GetVarArgs(args); in ProcessCodeItem() 480 uint32_t method_idx = DexMethodIndex(next.Inst()); in ProcessCodeItem()
|
/art/test/080-oom-throw/src/ |
D | Main.java | 39 InstanceMemEater next; field in Main.InstanceMemEater 112 lastMemEater.next = InstanceMemEater.allocate(); in triggerInstanceOOM() 113 lastMemEater = lastMemEater.next; in triggerInstanceOOM()
|
/art/test/444-checker-nce/src/ |
D | Main.java | 247 private ListElement next; field in ListElement 260 xTail = xTail.next; in isShorter() 261 yTail = yTail.next; in isShorter()
|
/art/test/923-monitors/src/art/ |
D | Test923.java | 149 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()
|