Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DJankTracker.cpp205 if (newData->totalFrameCount > (1 << 24)) { in switchStorageToAshmem()
218 newData->totalFrameCount >>= divider; in switchStorageToAshmem()
219 newData->totalFrameCount += mData->totalFrameCount; in switchStorageToAshmem()
254 mData->totalFrameCount++; in addFrame()
325 dprintf(fd, "\nTotal frames rendered: %u", data->totalFrameCount); in dumpData()
327 (float) data->jankFrameCount / (float) data->totalFrameCount * 100.0f); in dumpData()
351 mData->totalFrameCount = 0; in reset()
360 int pos = percentile * data->totalFrameCount / 100; in findPercentile()
361 int remaining = data->totalFrameCount - pos; in findPercentile()
DJankTracker.h52 uint32_t totalFrameCount; member
/frameworks/base/libs/hwui/tests/unit/
DGraphicsStatsServiceTests.cpp62 mockData.totalFrameCount = 100; in TEST()
108 mockData.totalFrameCount = 100; in TEST()
120 mockData.totalFrameCount = 500; in TEST()
/frameworks/base/libs/hwui/service/
DGraphicsStatsService.cpp95 summary->set_total_frames(summary->total_frames() + data->totalFrameCount); in mergeProfileDataIntoProto()