Searched refs:collect_max_after (Results 1 – 4 of 4) sorted by relevance
/hardware/qcom/sdm845/display/libhistogram/ |
D | ringbuffer.cpp | 97 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
|
D | ringbuffer.h | 59 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…
|
D | ringbuffer_test.cpp | 291 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()
|
D | histogram_collector.cpp | 354 std::tie(num_frames, samples) = histogram->collect_max_after(timestamp, max_frames); in collect()
|