Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DProfileData.cpp84 if (mTotalFrameCount > (1 << 24)) { in mergeWith()
97 mTotalFrameCount >>= divider; in mergeWith()
98 mTotalFrameCount += other.mTotalFrameCount; in mergeWith()
111 dprintf(fd, "\nTotal frames rendered: %u", mTotalFrameCount); in dump()
113 mTotalFrameCount == 0 ? 0.0f in dump()
114 : (float)mJankFrameCount / (float)mTotalFrameCount * 100.0f); in dump()
137 int pos = percentile * mTotalFrameCount / 100; in findPercentile()
138 int remaining = mTotalFrameCount - pos; in findPercentile()
159 mTotalFrameCount = 0; in reset()
166 mTotalFrameCount++; in reportFrame()
DProfileData.h65 uint32_t totalFrameCount() const { return mTotalFrameCount; } in totalFrameCount()
105 uint32_t mTotalFrameCount; variable
119 uint32_t& editTotalFrameCount() { return mTotalFrameCount; } in editTotalFrameCount()
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
DThroughputFilter.java38 private int mTotalFrameCount = 0; field in ThroughputFilter
65 mTotalFrameCount = 0; in open()
77 ++mTotalFrameCount; in process()
90 Throughput throughput = new Throughput(mTotalFrameCount, in process()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DThroughputFilter.java29 private int mTotalFrameCount = 0; field in ThroughputFilter
59 mTotalFrameCount = 0; in onOpen()
69 ++mTotalFrameCount; in onProcess()
82 Throughput throughput = new Throughput(mTotalFrameCount, in onProcess()