HomeSort by relevance Sort by last modified time
    Searched refs:mRecentHists (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libnbaio/
PerformanceAnalysis.cpp 88 // 3) compute its histogram, append to mRecentHists and clear the time series
89 mRecentHists.emplace_back(static_cast<timestamp>(mTimeStampSeries[0]),
91 // do not let mRecentHists exceed capacity
92 // ALOGD("mRecentHists size: %d", static_cast<int>(mRecentHists.size()));
93 if (mRecentHists.size() >= kRecentHistsCapacity) {
94 // ALOGD("popped back mRecentHists");
95 mRecentHists.pop_front();
124 // When the short-term histogram array mRecentHists has reached capacity,
126 // clears mRecentHists
    [all...]
  /frameworks/av/media/libnbaio/include/media/nbaio/
PerformanceAnalysis.h 52 // When the short-term histogram array mRecentHists has reached capacity,
96 std::deque<std::pair<timestamp, Histogram>> mRecentHists;

Completed in 122 milliseconds