Searched refs:collect_max (Results 1 – 4 of 4) sorted by relevance
91 return collect_max(ringbuffer.size(), lk); in collect_ringbuffer_all()100 histogram::Ringbuffer::Sample histogram::Ringbuffer::collect_max(uint32_t max_frames) const { in collect_max() function in histogram::Ringbuffer102 return collect_max(max_frames, lk); in collect_max()111 histogram::Ringbuffer::Sample histogram::Ringbuffer::collect_max( in collect_max() function in histogram::Ringbuffer140 return collect_max(collect_last, lk); in collect_max_after()
58 Sample collect_max(uint32_t max_frames) const;67 Sample collect_max(uint32_t max_frames, std::unique_lock<std::mutex> const&) const;
271 std::tie(numFrames, bins) = rb->collect_max(2); in TEST_F()275 std::tie(numFrames, bins) = rb->collect_max(0); in TEST_F()279 std::tie(numFrames, bins) = rb->collect_max(3); in TEST_F()283 std::tie(numFrames, bins) = rb->collect_max(8); in TEST_F()
352 std::tie(num_frames, samples) = histogram->collect_max(max_frames); in collect()