Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DProfileData.cpp83 if (mTotalFrameCount > (1 << 24)) { in mergeWith()
96 mTotalFrameCount >>= divider; in mergeWith()
97 mTotalFrameCount += other.mTotalFrameCount; in mergeWith()
105 dprintf(fd, "\nTotal frames rendered: %u", mTotalFrameCount); in dump()
107 mTotalFrameCount == 0 ? 0.0f in dump()
108 : (float)mJankFrameCount / (float)mTotalFrameCount * 100.0f); in dump()
123 int pos = percentile * mTotalFrameCount / 100; in findPercentile()
124 int remaining = mTotalFrameCount - pos; in findPercentile()
144 mTotalFrameCount = 0; in reset()
150 mTotalFrameCount++; in reportFrame()
DProfileData.h62 uint32_t totalFrameCount() const { return mTotalFrameCount; } in totalFrameCount()
92 uint32_t mTotalFrameCount; variable
103 uint32_t& editTotalFrameCount() { return mTotalFrameCount; } in editTotalFrameCount()
/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()
/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()