HomeSort by relevance Sort by last modified time
    Searched refs:numIterations (Results 1 - 25 of 29) sorted by null

1 2

  /external/lzma/CPP/7zip/UI/Console/
BenchCon.h 12 FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
14 HRESULT CrcBenchCon(FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
BenchCon.cpp 19 UInt64 NumIterations;
23 void Init() { NumIterations = 0; Rating = 0; Usage = 0; RPU = 0; }
26 if (NumIterations == 0)
28 Rating /= NumIterations;
29 Usage /= NumIterations;
30 RPU /= NumIterations;
31 NumIterations = 1;
38 NumIterations = (r1.NumIterations + r2.NumIterations) / 2;
    [all...]
  /frameworks/base/core/java/android/test/
RepetitiveTest.java 27 * numIterations and defaults to 1.
39 int numIterations() default 1;
InstrumentationTestCase.java 177 runCount = method.getAnnotation(RepetitiveTest.class).numIterations();
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/primitive/
GLPrimitiveBenchmark.java 107 * @param numIterations The number of iterations to run, each iteration has a bigger workload.
112 int numIterations, int timeout) throws Exception {
118 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_NUM_ITERATIONS, numIterations);
131 score /= numIterations;// Average.
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractScheduledServiceTest.java 319 assertEquals(1, service.numIterations.get());
325 assertEquals(1, service.numIterations.get());
346 int numIterations = service.numIterations.get();
350 assertEquals(numIterations, service.numIterations.get());
354 final AtomicInteger numIterations = new AtomicInteger(0);
360 numIterations.incrementAndGet();
390 assertEquals(i, service.numIterations.get());
403 final AtomicInteger numIterations = new AtomicInteger(0)
    [all...]
  /packages/apps/Launcher2/tests/stress/src/com/android/launcher2/stress/
LauncherRotationStressTest.java 51 @RepetitiveTest(numIterations=NUM_ITERATIONS)
  /packages/apps/Launcher3/tests/stress/src/com/android/launcher3/stress/
LauncherRotationStressTest.java 51 @RepetitiveTest(numIterations=NUM_ITERATIONS)
  /external/chromium_org/third_party/WebKit/Source/core/tests/
PODArenaTest.cpp 69 int numIterations = 10 * PODArena::DefaultChunkSize / sizeof(TestClass1);
70 for (int i = 0; i < numIterations; ++i)
PODFreeListArenaTest.cpp 77 int numIterations = 10 * PODArena::DefaultChunkSize / sizeof(TestClass1);
78 for (int i = 0; i < numIterations; ++i)
  /external/lzma/CPP/7zip/UI/Common/
Bench.h 16 UInt32 NumIterations;
17 CBenchInfo(): NumIterations(0) {}
29 UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 freq, UInt64 outSize, UInt64 inSize, UInt32 numIterations);
Bench.cpp 456 UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 freq, UInt64 outSize, UInt64 inSize, UInt32 numIterations)
458 UInt64 numCommands = (inSize * 200 + outSize * 4) * numIterations;
472 UInt32 NumIterations;
640 for (UInt32 j = 0; j < NumIterations; j++)
731 encoder.progressInfoSpec[0]->BenchInfo.NumIterations = numEncoderThreads;
762 info.NumIterations = 1; // progressInfoSpec->NumIterations;
779 encoder.NumIterations = 2 + kUncompressMinBlockSize / encoder.kBufferSize;
784 encoder.progressInfoSpec[0]->BenchInfo.NumIterations = numDecoderThreads;
836 info.NumIterations = numSubDecoderThreads * encoders[0].NumIterations;
    [all...]
  /external/lzma/Java/SevenZip/
LzmaBench.java 292 static public int LzmaBenchmark(int numIterations, int dictionarySize) throws Exception
294 if (numIterations <= 0)
340 for (int i = 0; i < numIterations; i++)
388 kBufferSize * (long)numIterations, true, totalCompressedSize);
  /frameworks/base/core/tests/notificationtests/src/android/app/
NotificationStressTest.java 70 @RepetitiveTest(numIterations=NUM_ITERATIONS)
  /external/chromium_org/third_party/icu/source/test/intltest/
testidna.h 93 void testChaining(const UChar* src,int32_t numIterations,const char* testName,
testidna.cpp     [all...]
  /external/icu4c/test/intltest/
testidna.h 93 void testChaining(const UChar* src,int32_t numIterations,const char* testName,
testidna.cpp     [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 233 UInt32 numIterations = kNumDefaultItereations;
236 if (!GetNumber(nonSwitchStrings[paramIndex++], numIterations))
237 numIterations = kNumDefaultItereations;
239 return LzmaBenchCon(stderr, numIterations, numThreads, dict);
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 188 Int32 numIterations = kNumDefaultItereations;
190 if (!GetNumber((string)nonSwitchStrings[paramIndex++], out numIterations))
191 numIterations = kNumDefaultItereations;
192 return LzmaBench.LzmaBenchmark(numIterations, (UInt32)dictionary);
LzmaBench.cs 241 static public int LzmaBenchmark(Int32 numIterations, UInt32 dictionarySize)
243 if (numIterations <= 0)
292 for (Int32 i = 0; i < numIterations; i++)
335 kBufferSize * (UInt64)numIterations, true, totalCompressedSize);
  /frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestRunner.java 244 private static final String REPORT_KEY_NUM_ITERATIONS = "numiterations";
298 int numIterations = testMethod.getAnnotation(RepetitiveTest.class)
299 .numIterations();
300 mTestResult.putInt(REPORT_KEY_NUM_ITERATIONS, numIterations);
  /frameworks/base/core/tests/utillib/src/android/test/
BandwidthTestCase.java 68 runCount = method.getAnnotation(RepetitiveTest.class).numIterations();
  /frameworks/base/test-runner/src/android/test/
InstrumentationTestRunner.java 249 private static final String REPORT_KEY_NUM_ITERATIONS = "numiterations";
781 int numIterations = testMethod.getAnnotation(
782 RepetitiveTest.class).numIterations();
783 mTestResult.putInt(REPORT_KEY_NUM_ITERATIONS, numIterations);
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
VideoEditorPerformance.java 115 private int calculateTimeTaken(long beginTime, int numIterations)
119 final int timeTaken1 = (int)(durationToCreateMediaItem / numIterations);
    [all...]

Completed in 1742 milliseconds

1 2