Searched defs:counts (Results 1 - 5 of 5) sorted by relevance

/art/runtime/base/
H A Dtiming_logger.cc236 size_t counts[2] = { 0 }; local
241 ++counts[timings_[i].IsStartTiming() ? 0 : 1];
243 CHECK_EQ(counts[0], counts[1]) << "Number of StartTiming and EndTiming doesn't match";
/art/runtime/arch/
H A Dstub_test.cc721 size_t counts[kNumberOfLocks]; variable
727 counts[i] = 0;
743 if (counts[index] == 0) {
750 if (counts[index] == 0) {
752 } else if (counts[index] == kThinLockLoops) {
762 counts[index]++;
766 counts[index]--;
778 EXPECT_EQ(counts[index], info.entry_count_) << index;
780 if (counts[index] > 0) {
782 EXPECT_EQ(counts[inde
[all...]
/art/compiler/dex/quick/
H A Dralloc_util.cc1154 RefCounts* counts = loc.fp ? fp_counts : core_counts; local
1161 counts[p_map_idx].count += use_count;
1164 counts[p_map_idx + num_regs].count += use_count;
1168 counts[p_map_idx].count += use_count;
1175 counts[p_map_idx].count += use_count;
1259 // Sum use counts of SSA regs by original Dalvik vreg.
/art/runtime/jdwp/
H A Djdwp_handler.cc450 std::vector<uint64_t> counts; local
451 JdwpError rc = Dbg::GetInstanceCounts(class_ids, counts);
456 expandBufAdd4BE(pReply, counts.size());
457 for (size_t i = 0; i < counts.size(); ++i) {
458 expandBufAdd8BE(pReply, counts[i]);
/art/runtime/gc/
H A Dheap.cc1411 InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
1413 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
1439 uint64_t* counts) {
1443 InstanceCounter counter(classes, use_is_assignable_from, counts);
1438 CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts) argument

Completed in 1018 milliseconds