/art/test/099-vmdebug/ |
D | expected-stdout.txt | 24 Array counts [2, 1, 0] 25 Array counts assignable [3, 1, 0]
|
/art/test/905-object-free/ |
D | expected-stdout.txt | 13 Free counts 200000 200000
|
/art/tools/veridex/ |
D | hidden_api_finder.cc | 244 std::map<std::string, size_t> counts; in DumpReferences() local 247 if (!counts.count(ref_string)) { in DumpReferences() 248 counts[ref_string] = 0; in DumpReferences() 250 counts[ref_string]++; in DumpReferences() 253 for (const std::pair<const std::string, size_t>& pair : counts) { in DumpReferences()
|
/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 | 239 size_t counts[2] = { 0 }; in Verify() local 244 ++counts[timings_[i].IsStartTiming() ? 0 : 1]; in Verify() 246 CHECK_EQ(counts[0], counts[1]) << "Number of StartTiming and EndTiming doesn't match"; in Verify()
|
/art/test/099-vmdebug/src/ |
D | Main.java | 246 long[] counts = VMDebug.countInstancesofClasses(classes, false); in testCountInstances() local 247 System.out.println("Array counts " + Arrays.toString(counts)); in testCountInstances() 248 counts = VMDebug.countInstancesofClasses(classes, true); in testCountInstances() 249 System.out.println("Array counts assignable " + Arrays.toString(counts)); in testCountInstances()
|
/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/runtime/native/ |
D | dalvik_system_VMDebug.cc | 292 std::vector<uint64_t> counts(classes.size(), 0u); in VMDebug_countInstancesOfClasses() local 294 heap->CountInstances(classes, countAssignable, &counts[0]); in VMDebug_countInstancesOfClasses() 295 ObjPtr<mirror::LongArray> long_counts = mirror::LongArray::Alloc(soa.Self(), counts.size()); in VMDebug_countInstancesOfClasses() 300 for (size_t i = 0; i < counts.size(); ++i) { in VMDebug_countInstancesOfClasses() 301 long_counts->Set(i, counts[i]); in VMDebug_countInstancesOfClasses()
|
/art/tools/jvmti-agents/field-counts/ |
D | README.md | 48 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/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 | 577 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/ |
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/jni/ |
D | jni_id_manager.cc | 305 constexpr std::pair<size_t, size_t> counts { in EncodeGenericId() local 309 StackReflectiveHandleScope<counts.first, counts.second> hs(self); in EncodeGenericId()
|
/art/tools/dexfuzz/ |
D | README | 94 an attempt to mutate a file doesn't actually mutate it. This counts
|
/art/runtime/interpreter/mterp/x86_64/ |
D | main.S | 708 jle MRestoreFrame # if > 0, we may have some counts to report.
|
/art/runtime/interpreter/mterp/arm/ |
D | main.S | 735 bgt MterpProfileActive @ if > 0, we may have some counts to report.
|
/art/runtime/interpreter/mterp/x86/ |
D | main.S | 754 jle MRestoreFrame # if > 0, we may have some counts to report.
|
/art/runtime/gc/ |
D | heap.h | 402 uint64_t* counts)
|
D | heap.cc | 2034 uint64_t* counts) { in CountInstances() argument 2038 ++counts[i]; in CountInstances()
|