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/jdwp/
H A Djdwp_handler.cc404 std::vector<uint64_t> counts; local
405 JdwpError rc = Dbg::GetInstanceCounts(class_ids, &counts);
410 expandBufAdd4BE(pReply, counts.size());
411 for (size_t i = 0; i < counts.size(); ++i) {
412 expandBufAdd8BE(pReply, counts[i]);
/art/runtime/arch/
H A Dstub_test.cc706 size_t counts[kNumberOfLocks]; variable
712 counts[i] = 0;
728 if (counts[index] == 0) {
735 if (counts[index] == 0) {
737 } else if (counts[index] == kThinLockLoops) {
747 counts[index]++;
751 counts[index]--;
763 EXPECT_EQ(counts[index], info.entry_count_) << index;
765 if (counts[index] > 0) {
767 EXPECT_EQ(counts[inde
[all...]
/art/runtime/
H A Ddebugger.cc890 std::vector<uint64_t>* counts) {
894 counts->clear();
902 counts->push_back(0);
904 heap->CountInstances(classes, false, &(*counts)[0]);
889 GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, std::vector<uint64_t>* counts) argument
/art/runtime/gc/
H A Dheap.cc1899 uint64_t* counts)
1901 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {}
1928 uint64_t* counts) {
1929 InstanceCounter counter(classes, use_is_assignable_from, counts);
2805 // zero counts to the histograms.
2816 // Record the other windows (with zero counts).
1927 CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts) argument

Completed in 173 milliseconds