Searched refs:counts (Results 1 – 17 of 17) sorted by relevance
/art/test/099-vmdebug/ |
D | expected-stdout.txt | 26 Array counts [2, 1, 0] 27 Array counts assignable [3, 1, 0]
|
/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/905-object-free/ |
D | expected-stdout.txt | 13 Free counts as expected
|
/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 | 237 size_t counts[2] = { 0 }; in Verify() local 242 ++counts[timings_[i].IsStartTiming() ? 0 : 1]; in Verify() 244 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/runtime/native/ |
D | dalvik_system_VMDebug.cc | 291 std::vector<uint64_t> counts(classes.size(), 0u); in VMDebug_countInstancesOfClasses() local 293 heap->CountInstances(classes, countAssignable, &counts[0]); in VMDebug_countInstancesOfClasses() 294 ObjPtr<mirror::LongArray> long_counts = mirror::LongArray::Alloc(soa.Self(), counts.size()); in VMDebug_countInstancesOfClasses() 299 for (size_t i = 0; i < counts.size(); ++i) { in VMDebug_countInstancesOfClasses() 300 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/test/099-vmdebug/src/ |
D | Main.java | 335 long[] counts = VMDebug.countInstancesofClasses(classes, false); in testCountInstances() local 336 System.out.println("Array counts " + Arrays.toString(counts)); in testCountInstances() 337 counts = VMDebug.countInstancesofClasses(classes, true); in testCountInstances() 338 System.out.println("Array counts assignable " + Arrays.toString(counts)); in testCountInstances()
|
/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/imgdiag/ |
D | dirty_image_objects.md | 80 This can be checked by collecting imgdiag output again and comparing dirty page counts to the previ…
|
/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 | 333 constexpr std::pair<size_t, size_t> counts { in EncodeGenericId() local 337 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/gc/ |
D | heap.h | 423 uint64_t* counts)
|
D | heap.cc | 2178 uint64_t* counts) { in CountInstances() argument 2182 ++counts[i]; in CountInstances()
|