/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);
|