Searched refs:recent_perf (Results 1 – 4 of 4) sorted by relevance
86 if (nr_samples < recent_perf.size()) { in load_perf_history_proto()87 recent_perf.erase(recent_perf.begin() + nr_samples, recent_perf.end()); in load_perf_history_proto()90 for (auto bw : perf_history.recent_perf()) { in load_perf_history_proto()91 if (i < recent_perf.size()) { in load_perf_history_proto()92 recent_perf[i] = bw; in load_perf_history_proto()94 recent_perf.push_back(bw); in load_perf_history_proto()128 for (const uint32_t& bw : recent_perf) { in refresh()156 if (nr_samples >= recent_perf.size()) { in update_perf_history()157 recent_perf.push_back(bw); in update_perf_history()159 recent_perf[nr_samples] = bw; in update_perf_history()[all …]
178 uint32_t recent_perf = storaged_sp->get_recent_perf(); in getRecentPerf() local179 if (recent_perf > INT32_MAX) { in getRecentPerf()182 *_aidl_return = static_cast<int32_t>(recent_perf); in getRecentPerf()
46 repeated uint32 recent_perf = 2; field
53 vector<uint32_t> recent_perf; variable