Home
last modified time | relevance | path

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

/art/test/099-vmdebug/
Dexpected.txt24 Array counts [2, 1, 0]
25 Array counts assignable [3, 1, 0]
/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/tools/veridex/
Dhidden_api_finder.cc237 std::map<std::string, size_t> counts; in DumpReferences() local
240 if (!counts.count(ref_string)) { in DumpReferences()
241 counts[ref_string] = 0; in DumpReferences()
243 counts[ref_string]++; in DumpReferences()
246 for (const std::pair<const std::string, size_t>& pair : counts) { in DumpReferences()
/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/tools/jvmti-agents/field-counts/
DREADME.md48 Will initiate a dump of the counts (to logcat).
56 dalvikvm64 I 06-27 14:24:59 183155 183155 fieldcount.cc:97] Dumping counts of fields.
/art/runtime/native/
Ddalvik_system_VMDebug.cc321 std::vector<uint64_t> counts(classes.size(), 0u); in VMDebug_countInstancesOfClasses() local
323 heap->CountInstances(classes, countAssignable, &counts[0]); in VMDebug_countInstancesOfClasses()
324 ObjPtr<mirror::LongArray> long_counts = mirror::LongArray::Alloc(soa.Self(), counts.size()); in VMDebug_countInstancesOfClasses()
329 for (size_t i = 0; i < counts.size(); ++i) { in VMDebug_countInstancesOfClasses()
330 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.cc577 size_t counts[kNumberOfLocks]; in TestUnlockObject() local
583 counts[i] = 0; in TestUnlockObject()
599 if (counts[index] == 0) { in TestUnlockObject()
606 if (counts[index] == 0) { in TestUnlockObject()
608 } else if (counts[index] == kThinLockLoops) { in TestUnlockObject()
618 counts[index]++; in TestUnlockObject()
622 counts[index]--; in TestUnlockObject()
634 EXPECT_EQ(counts[index], info.entry_count_) << index; in TestUnlockObject()
636 if (counts[index] > 0) { in TestUnlockObject()
638 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/jni/
Djni_id_manager.cc305 constexpr std::pair<size_t, size_t> counts { in EncodeGenericId() local
309 StackReflectiveHandleScope<counts.first, counts.second> hs(self); in EncodeGenericId()
/art/tools/dexfuzz/
DREADME94 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/x86/
Dmain.S755 jle MRestoreFrame # if > 0, we may have some counts to report.
/art/runtime/gc/
Dheap.h394 uint64_t* counts)
Dheap.cc1976 uint64_t* counts) { in CountInstances() argument
1980 ++counts[i]; in CountInstances()