/system/extras/tests/bionic/libc/other/ |
bench_locks.c | 20 const long ITERATIONS = 1000000; 24 for (count = ITERATIONS; count > 0; count--) { 29 printf( "pthread_mutex_lock/unlock: %.5g us/op\n", (t1*1000000.0)/ITERATIONS );
|
/system/extras/ext4_utils/ |
test_ext4fixup | 3 typeset -i I ITERATIONS PHASE LOC COUNT MAXCOUNT 9 echo "$ME: Usage: $ME <iterations> <maxcount> <filesystem_image>" >&2 13 ITERATIONS="$1" 40 while [ "$I" -lt "$ITERATIONS" ]
|
/frameworks/base/core/tests/coretests/src/android/util/ |
LogTest.java | 136 private static final int ITERATIONS = 1000; 148 intermediates.setInternalIterations(ITERATIONS * 10); 154 for (int i = ITERATIONS - 1; i >= 0; i--) {
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
MediaAudioManagerTest.java | 210 //Test case 4: test audio focus registering and use over 3000 iterations 213 final int ITERATIONS = 3000; 216 for (int i = 0 ; i < ITERATIONS ; i++) { 224 assertTrue("testAudioFocusListenerLifeCycle : tested" + ITERATIONS +" iterations", true); 230 final int ITERATIONS = 1000; 236 for (int i = 0 ; i < ITERATIONS ; i++) { 246 mAudioFocusListener.mFocusChangeCounter == ITERATIONS * 2);
|
/external/jmonkeyengine/engine/src/test/jme3test/app/ |
TestTempVars.java | 39 private static final int ITERATIONS = 10000000; 53 // for (int i = 0; i < ITERATIONS; i++) { 62 for (int i = 0; i < ITERATIONS; i++) { 71 for (int i = 0; i < ITERATIONS; i++) {
|
/libcore/luni/src/test/java/com/android/org/bouncycastle/crypto/digests/ |
DigestTest.java | 39 final int ITERATIONS = 10; 60 for (int j = 0; j < ITERATIONS; j++) { 86 System.out.println("Time for " + ITERATIONS + " x old hash processing: " + oldTime + " ms"); 87 System.out.println("Time for " + ITERATIONS + " x new hash processing: " + newTime + " ms");
|
/libcore/luni/src/test/java/libcore/javax/crypto/ |
SecretKeyFactoryTest.java | 38 * The number of iterations should be higher for production 42 private static final int ITERATIONS = 1024; 74 KeySpec ks = new PBEKeySpec(null, SALT, ITERATIONS); 80 KeySpec ks = new PBEKeySpec(new char[0], SALT, ITERATIONS); 86 KeySpec ks = new PBEKeySpec(PASSWORD, SALT, ITERATIONS); 93 KeySpec ks = new PBEKeySpec(null, SALT, ITERATIONS, KEY_LENGTH); 100 KeySpec ks = new PBEKeySpec(new char[0], SALT, ITERATIONS, KEY_LENGTH); 106 KeySpec ks = new PBEKeySpec(PASSWORD, SALT, ITERATIONS, KEY_LENGTH); 117 test_PBKDF2_UTF8(PASSWORD, SALT, ITERATIONS, KEY_LENGTH, expected); 118 test_PBKDF2_8BIT(PASSWORD, SALT, ITERATIONS, KEY_LENGTH, expected) 132 int iterations = 5; local 154 int iterations = 500; local 175 int iterations = 4096; local [all...] |
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
AtomicLongMapTest.java | 25 private static final int ITERATIONS = 100; 54 for (int i = 0; i < ITERATIONS; i++) { 64 assertEquals(ITERATIONS, (int) map.get(key)); 87 for (int i = 0; i < ITERATIONS; i++) { 97 assertEquals(ITERATIONS, (int) map.get(key)); 120 for (int i = 0; i < ITERATIONS; i++) { 130 assertEquals(-1 * ITERATIONS, (int) map.get(key)); 153 for (int i = 0; i < ITERATIONS; i++) { 163 assertEquals(-1 * ITERATIONS, (int) map.get(key)); 187 for (int i = 0; i < ITERATIONS; i++) [all...] |
/cts/tests/tests/hardware/src/android/hardware/cts/ |
SensorIntegrationTests.java | 89 final int ITERATIONS = 50; 105 operation.add(new RepeatingSensorTestOperation(continuousOperation, ITERATIONS)); 112 operation.add(new RepeatingSensorTestOperation(batchingOperation, ITERATIONS));
|
/external/chromium_org/third_party/icu/source/test/perf/perldriver/ |
PerfFramework.pm | 26 my $ITERATIONS; #Added by Doug 45 if ($options{"iterations"}) { 46 $ITERATIONS = $options{"iterations"}; 124 if ($ITERATIONS) { 125 $commandLine = "$program -i $ITERATIONS -p $NUMPASSES $locAndData @argsAndTest"; 160 # @param if >0 then the number of iterations per pass. If <0 then 164 # [0] iterations per pass 189 # out("Iterations per pass: $iterCount<BR>\n"); 191 # debug("Iterations per pass: $iterCount<BR>\n") [all...] |
/external/icu4c/test/perf/perldriver/ |
PerfFramework.pm | 26 my $ITERATIONS; #Added by Doug 45 if ($options{"iterations"}) { 46 $ITERATIONS = $options{"iterations"}; 124 if ($ITERATIONS) { 125 $commandLine = "$program -i $ITERATIONS -p $NUMPASSES $locAndData @argsAndTest"; 160 # @param if >0 then the number of iterations per pass. If <0 then 164 # [0] iterations per pass 189 # out("Iterations per pass: $iterCount<BR>\n"); 191 # debug("Iterations per pass: $iterCount<BR>\n") [all...] |
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
GraphicsPerformanceTests.java | 76 /** Number of iterations to pass back to harness. Subclass should override */ 98 // Ask subclass for number of iterations 161 private static final int ITERATIONS = 1000; 175 return ITERATIONS; 186 for (int i = 0; i < ITERATIONS; i++) { 192 for (int i = 0; i < ITERATIONS; i++) {
|
/external/valgrind/main/memcheck/tests/ |
vcpu_fbench.c | 100 normalised as if run for 1000 iterations. 306 #ifndef ITERATIONS 307 #define ITERATIONS /*1000*/ /*500000*/ 100 309 int niter = ITERATIONS; /* Iteration counter */ 723 /* Process the number of iterations argument, if one is supplied. */ 731 printf("where <itercount> is the number of iterations\n"); 752 printf("and performance benchmark. %d iterations will be made.\n\n",
|
/external/valgrind/main/perf/ |
fbench.c | 96 normalised as if run for 1000 iterations. 302 #ifndef ITERATIONS 303 #define ITERATIONS /*1000*/ /*500000*/ 80000 305 int niter = ITERATIONS; /* Iteration counter */ 719 /* Process the number of iterations argument, if one is supplied. */ 727 printf("where <itercount> is the number of iterations\n"); 748 printf("and performance benchmark. %d iterations will be made.\n\n",
|
/frameworks/native/opengl/tests/tritex/ |
tritex.cpp | 2 // ITERATIONS. Should draw a checkerboard on the screen after 26 #define ITERATIONS 50
113 render(argc==2 ? atoi(argv[1]) : ITERATIONS);
|
/external/chromium_org/third_party/icu/source/tools/ctestfw/ |
uperf.cpp | 34 "\t-i or --iterations Number of iterations to be performed. Requires Numeric argument\n" 36 "\t Cannot be used with --iterations\n" 52 ITERATIONS, 70 UOPTION_DEF( "iterations", 'i', UOPT_REQUIRES_ARG), 85 passes(1), iterations(0), time(0), 101 passes(1), iterations(0), time(0), 157 if(options[ITERATIONS].doesOccur) { 158 iterations = atoi(options[ITERATIONS].value) [all...] |
/external/icu4c/tools/ctestfw/ |
uperf.cpp | 38 "\t-i or --iterations Number of iterations to be performed. Requires Numeric argument\n" 40 "\t Cannot be used with --iterations\n" 56 ITERATIONS, 74 UOPTION_DEF( "iterations", 'i', UOPT_REQUIRES_ARG), 89 passes(1), iterations(0), time(0), 105 passes(1), iterations(0), time(0), 161 if(options[ITERATIONS].doesOccur) { 162 iterations = atoi(options[ITERATIONS].value) [all...] |
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
ImageProcessingTest.java | 38 private final String ITERATIONS = "Iterations"; 109 results.putInt(ITERATIONS, mIteration);
|
/external/icu4c/test/perf/howExpensiveIs/ |
howExpensiveIs.cpp | 27 #ifndef ITERATIONS 28 #define ITERATIONS 5 59 fprintf(stderr, "** Standard sieve time: %.9fs +/- %.9fs (%d iterations)\n", s,m, (int)U_LOTS_OF_TIMES); 150 * @return number of iterations 168 double times[ITERATIONS]; 170 for(int i=0;i<ITERATIONS;i++) { 173 fprintf(stderr, "trial: %d/%d = %.9fs\n", i, ITERATIONS,times[i]); 177 uint32_t iterations = ITERATIONS; local 178 *subTime = uprv_getMeanTime(times,&iterations,marginOfError) [all...] |
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/ |
RecurrenceProcessorTest.java | [all...] |
/external/valgrind/main/drd/tests/ |
tsan_unittest.cpp | [all...] |
/external/valgrind/unittest/ |
racecheck_unittest.cc | [all...] |
/frameworks/native/opengl/tests/gl_basic/ |
gl_basic.cpp | 24 #define ITERATIONS 50
|
/external/chromium_org/third_party/openssl/openssl/crypto/des/ |
des_locl.h | 101 #define ITERATIONS 16
|
/external/openssl/crypto/des/ |
des_locl.h | 101 #define ITERATIONS 16
|