Home
last modified time | relevance | path

Searched refs:frameTimes (Results 1 – 3 of 3) sorted by relevance

/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/metric/
DLoopSummary.java231 private List<Long> frameTimes = new ArrayList<>(); field in LoopSummary.Builder
239 if (frameTimes.isEmpty()) { in build()
242 frameTimes.sort(Comparator.naturalOrder()); in build()
243 int size = frameTimes.size(); in build()
251 int index = Collections.binarySearch(frameTimes, targetFrameTime + slack); in build()
256 frameTimes.size(), in build()
259 frameTimes.get(0), in build()
260 frameTimes.get(frameTimes.size() - 1), in build()
261 (double)totalTimeNs / frameTimes.size(), in build()
262 frameTimes.get((int)Math.ceil(size * 0.90) - 1), in build()
[all …]
DGameQualificationFpsCollector.java210 List<Long> frameTimes = new ArrayList<>(); in processTimestampsSlice() local
246 frameTimes.add(presentTimeDiff); in processTimestampsSlice()
249 printHistogram(frameTimes, runIndex); in processTimestampsSlice()
319 void printHistogram(Collection<Long> frameTimes, int runIndex) { in printHistogram() argument
322 new Histogram(frameTimes, mVSyncPeriod / 30L, null, 5 * mVSyncPeriod); in printHistogram()
/tools/test/graphicsbenchmark/functional_tests/java/src/cpp/
Dnative_choreo_activity.cpp129 static std::vector<unsigned long> frameTimes; variable
135 frameTimes.push_back((unsigned long)frameTimeNanos); in frameCallback()
193 for (int i = 5; i < frameTimes.size(); ++i) { in Java_com_android_game_qualification_tests_ChoreoTestActivity_getFrameIntervals()
194 jlong interval = frameTimes[i] - frameTimes[i-1]; in Java_com_android_game_qualification_tests_ChoreoTestActivity_getFrameIntervals()