Home
last modified time | relevance | path

Searched refs:collect_max_after (Results 1 – 4 of 4) sorted by relevance

/hardware/qcom/sdm845/display/libhistogram/
Dringbuffer.cpp97 return collect_max_after(timestamp, ringbuffer.size(), lk); in collect_after()
105 histogram::Ringbuffer::Sample histogram::Ringbuffer::collect_max_after( in collect_max_after() function in histogram::Ringbuffer
108 return collect_max_after(timestamp, max_frames, lk); in collect_max_after()
132 histogram::Ringbuffer::Sample histogram::Ringbuffer::collect_max_after( in collect_max_after() function in histogram::Ringbuffer
Dringbuffer.h59 Sample collect_max_after(nsecs_t timestamp, uint32_t max_frames) const;
68 …Sample collect_max_after(nsecs_t timestamp, uint32_t max_frames, std::unique_lock<std::mutex> cons…
Dringbuffer_test.cpp291 std::tie(numFrames, bins) = rb->collect_max_after(toNsecs(1500us), 1); in TEST_F()
295 std::tie(numFrames, bins) = rb->collect_max_after(toNsecs(2500us), 0); in TEST_F()
299 std::tie(numFrames, bins) = rb->collect_max_after(toNsecs(10ms), 100); in TEST_F()
303 std::tie(numFrames, bins) = rb->collect_max_after(toNsecs(0ns), 10); in TEST_F()
311 std::tie(numFrames, bins) = rb->collect_max_after(toNsecs(500us), 1); in TEST_F()
315 std::tie(numFrames, bins) = rb->collect_max_after(toNsecs(500us), 10); in TEST_F()
320 std::tie(numFrames, bins) = rb->collect_max_after(toNsecs(500us), 10); in TEST_F()
Dhistogram_collector.cpp354 std::tie(num_frames, samples) = histogram->collect_max_after(timestamp, max_frames); in collect()