/art/test/099-vmdebug/ |
D | expected.txt | 24 Array counts [2, 1, 0] 25 Array counts assignable [3, 1, 0]
|
/art/tools/veridex/ |
D | hidden_api_finder.cc | 228 std::map<std::string, size_t> counts; in DumpReferences() local 231 if (!counts.count(ref_string)) { in DumpReferences() 232 counts[ref_string] = 0; in DumpReferences() 234 counts[ref_string]++; in DumpReferences() 237 for (const std::pair<const std::string, size_t>& pair : counts) { in DumpReferences()
|
/art/test/905-object-free/ |
D | expected.txt | 13 Free counts 200000 200000
|
/art/test/641-iterations/ |
D | info.txt | 1 Tests on varying trip counts (to validate vector/cleanup loops).
|
/art/runtime/base/ |
D | timing_logger.cc | 242 size_t counts[2] = { 0 }; in Verify() local 247 ++counts[timings_[i].IsStartTiming() ? 0 : 1]; in Verify() 249 CHECK_EQ(counts[0], counts[1]) << "Number of StartTiming and EndTiming doesn't match"; in Verify()
|
/art/tools/jvmti-agents/field-null-percent/ |
D | README.md | 43 Will initiate a dump of the counts (to logcat). 47 > `dalvikvm32 I 08-30 14:51:20 84818 84818 fieldnull.cc:96] Dumping counts of null fields.`
|
/art/test/099-vmdebug/src/ |
D | Main.java | 247 long[] counts = VMDebug.countInstancesofClasses(classes, false); in testCountInstances() local 248 System.out.println("Array counts " + Arrays.toString(counts)); in testCountInstances() 249 counts = VMDebug.countInstancesofClasses(classes, true); in testCountInstances() 250 System.out.println("Array counts assignable " + Arrays.toString(counts)); in testCountInstances()
|
/art/runtime/native/ |
D | dalvik_system_VMDebug.cc | 327 std::vector<uint64_t> counts(classes.size(), 0u); in VMDebug_countInstancesOfClasses() local 329 heap->CountInstances(classes, countAssignable, &counts[0]); in VMDebug_countInstancesOfClasses() 330 ObjPtr<mirror::LongArray> long_counts = mirror::LongArray::Alloc(soa.Self(), counts.size()); in VMDebug_countInstancesOfClasses() 335 for (size_t i = 0; i < counts.size(); ++i) { in VMDebug_countInstancesOfClasses() 336 long_counts->Set(i, counts[i]); in VMDebug_countInstancesOfClasses()
|
/art/tools/jvmti-agents/jit-load/ |
D | README.md | 34 Will initiate a dump of the counts (to logcat).
|
/art/runtime/arch/ |
D | stub_test.cc | 709 size_t counts[kNumberOfLocks]; in TestUnlockObject() local 715 counts[i] = 0; in TestUnlockObject() 731 if (counts[index] == 0) { in TestUnlockObject() 738 if (counts[index] == 0) { in TestUnlockObject() 740 } else if (counts[index] == kThinLockLoops) { in TestUnlockObject() 750 counts[index]++; in TestUnlockObject() 754 counts[index]--; in TestUnlockObject() 766 EXPECT_EQ(counts[index], info.entry_count_) << index; in TestUnlockObject() 768 if (counts[index] > 0) { in TestUnlockObject() 770 EXPECT_EQ(counts[index] - 1, lock_iter.ThinLockCount()); in TestUnlockObject() [all …]
|
/art/tools/dexanalyze/ |
D | dexanalyze_experiments.cc | 89 std::vector<size_t> counts(256, 0u); in ProcessDexFiles() local 167 ++counts[debug_info[i]]; in ProcessDexFiles() 184 total_entropy_ += calc_entropy(counts); in ProcessDexFiles()
|
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 406 std::vector<uint64_t> counts; in VM_InstanceCounts() local 407 JdwpError rc = Dbg::GetInstanceCounts(class_ids, &counts); in VM_InstanceCounts() 412 expandBufAdd4BE(pReply, counts.size()); in VM_InstanceCounts() 413 for (size_t i = 0; i < counts.size(); ++i) { in VM_InstanceCounts() 414 expandBufAdd8BE(pReply, counts[i]); in VM_InstanceCounts()
|
/art/tools/dexfuzz/ |
D | README | 96 an attempt to mutate a file doesn't actually mutate it. This counts
|
/art/runtime/interpreter/mterp/x86_64/ |
D | main.S | 709 jle MRestoreFrame # if > 0, we may have some counts to report.
|
/art/runtime/interpreter/mterp/arm/ |
D | main.S | 736 bgt MterpProfileActive @ if > 0, we may have some counts to report.
|
/art/runtime/interpreter/mterp/mips64/ |
D | main.S | 683 blez rPROFILE, .L_pop_and_return # if > 0, we may have some counts to report.
|
/art/runtime/interpreter/mterp/x86/ |
D | main.S | 755 jle MRestoreFrame # if > 0, we may have some counts to report.
|
/art/runtime/ |
D | debugger.h | 386 std::vector<uint64_t>* counts)
|
D | debugger.cc | 950 std::vector<uint64_t>* counts) { in GetInstanceCounts() argument 955 counts->clear(); in GetInstanceCounts() 963 counts->push_back(0); in GetInstanceCounts() 965 heap->CountInstances(classes, false, &(*counts)[0]); in GetInstanceCounts()
|
/art/runtime/interpreter/mterp/mips/ |
D | main.S | 1106 blez rPROFILE, .L_pop_and_return # if > 0, we may have some counts to report.
|
/art/runtime/gc/ |
D | heap.h | 381 uint64_t* counts)
|
D | heap.cc | 1954 uint64_t* counts) { in CountInstances() argument 1958 ++counts[i]; in CountInstances()
|