Home
last modified time | relevance | path

Searched refs:counts (Results 1 – 22 of 22) sorted by relevance

/art/test/099-vmdebug/
Dexpected.txt24 Array counts [2, 1, 0]
25 Array counts assignable [3, 1, 0]
/art/tools/veridex/
Dhidden_api_finder.cc228 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/
Dexpected.txt13 Free counts 200000 200000
/art/test/641-iterations/
Dinfo.txt1 Tests on varying trip counts (to validate vector/cleanup loops).
/art/runtime/base/
Dtiming_logger.cc242 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/
DREADME.md43 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/
DMain.java247 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/
Ddalvik_system_VMDebug.cc327 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/
DREADME.md34 Will initiate a dump of the counts (to logcat).
/art/runtime/arch/
Dstub_test.cc709 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/
Ddexanalyze_experiments.cc89 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/
Djdwp_handler.cc406 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/
DREADME96 an attempt to mutate a file doesn't actually mutate it. This counts
/art/runtime/interpreter/mterp/x86_64/
Dmain.S709 jle MRestoreFrame # if > 0, we may have some counts to report.
/art/runtime/interpreter/mterp/arm/
Dmain.S736 bgt MterpProfileActive @ if > 0, we may have some counts to report.
/art/runtime/interpreter/mterp/mips64/
Dmain.S683 blez rPROFILE, .L_pop_and_return # if > 0, we may have some counts to report.
/art/runtime/interpreter/mterp/x86/
Dmain.S755 jle MRestoreFrame # if > 0, we may have some counts to report.
/art/runtime/
Ddebugger.h386 std::vector<uint64_t>* counts)
Ddebugger.cc950 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/
Dmain.S1106 blez rPROFILE, .L_pop_and_return # if > 0, we may have some counts to report.
/art/runtime/gc/
Dheap.h381 uint64_t* counts)
Dheap.cc1954 uint64_t* counts) { in CountInstances() argument
1958 ++counts[i]; in CountInstances()