HomeSort by relevance Sort by last modified time
    Searched defs:mMaxIterations (Results 1 - 3 of 3) sorted by null

  /frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
ManualBenchmarkState.java 77 private int mMaxIterations = 0;
87 mMaxIterations = (int) (TARGET_TEST_DURATION_NS / (warmupDuration / iterations));
88 mMaxIterations = Math.min(MAX_TEST_ITERATIONS,
89 Math.max(mMaxIterations, MIN_TEST_ITERATIONS));
118 final boolean keepRunning = mResults.size() < mMaxIterations;
BenchmarkState.java 74 private int mMaxIterations = 0;
124 mMaxIterations = (int) (TARGET_TEST_DURATION_NS / (warmupDuration / iterations));
125 mMaxIterations = Math.min(MAX_TEST_ITERATIONS,
126 Math.max(mMaxIterations, MIN_TEST_ITERATIONS));
136 mResults.add((currentTime - mStartTimeNs - mPausedDurationNs) / mMaxIterations);
173 if (mIteration >= mMaxIterations) {
  /frameworks/base/core/java/com/android/internal/ml/clustering/
KMeans.java 37 private final int mMaxIterations;
49 mMaxIterations = maxIterations;
78 for (int i = 0; i < mMaxIterations; i++) {

Completed in 381 milliseconds