/dalvik/tests/055-enum-performance/ |
expected.txt | 8 basis: performed 10000 iterations 9 test1: performed 10000 iterations 10 test2: performed 10000 iterations 11 test3: performed 10000 iterations
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
PBEParameter.java | 17 ASN1Integer iterations; field in class:PBEParameter 22 int iterations) 29 this.iterations = new ASN1Integer(iterations); 36 iterations = (ASN1Integer)seq.getObjectAt(1); 56 return iterations.getValue(); 69 v.add(iterations);
|
PKCS12PBEParams.java | 17 ASN1Integer iterations; field in class:PKCS12PBEParams 22 int iterations) 25 this.iterations = new ASN1Integer(iterations); 32 iterations = ASN1Integer.getInstance(seq.getObjectAt(1)); 52 return iterations.getValue(); 65 v.add(iterations);
|
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/ |
BluetoothStressTest.java | 30 * number of iterations and the addresses of remote Bluetooth devices. 59 int iterations = BluetoothTestRunner.sEnableIterations; local 60 if (iterations == 0) { 67 for (int i = 0; i < iterations; i++) { 68 mTestUtils.writeOutput("enable iteration " + (i + 1) + " of " + iterations); 78 int iterations = BluetoothTestRunner.sDiscoverableIterations; local 79 if (iterations == 0) { 88 for (int i = 0; i < iterations; i++) { 89 mTestUtils.writeOutput("discoverable iteration " + (i + 1) + " of " + iterations); 101 int iterations = BluetoothTestRunner.sScanIterations local 124 int iterations = BluetoothTestRunner.sEnablePanIterations; local 150 int iterations = BluetoothTestRunner.sPairIterations; local 177 int iterations = BluetoothTestRunner.sPairIterations; local 203 int iterations = BluetoothTestRunner.sConnectA2dpIterations; local 236 int iterations = BluetoothTestRunner.sConnectHeadsetIterations; local 269 int iterations = BluetoothTestRunner.sConnectInputIterations; local 302 int iterations = BluetoothTestRunner.sConnectPanIterations; local 332 int iterations = BluetoothTestRunner.sConnectPanIterations; local 366 int iterations = BluetoothTestRunner.sStartStopScoIterations; local [all...] |
/external/expat/tests/benchmark/ |
README.txt | 3 benchmark [-n] <file name> <buffer size> <# iterations> 11 <# iterations> ... how often will the file be parsed 16 averaged over the number of iterations
|
/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 );
|
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
RsPerfTestRunner.java | 31 * with specified iterations: 32 * adb shell am instrument -e iterations <n> -w com.android.perftest/.RsPerfTestRunner 36 public int iterations = 10; field in class:RsPerfTestRunner 48 String strValue = (String)icicle.get("iterations"); 51 if (iterations > 0) { 52 iterations = intValue;
|
RsBenchTest.java | 36 private int iterations = 0; field in class:RsBenchTest 48 iterations = mRunner.iterations; 49 Log.v(TAG, "Run benchmark for " + iterations + " iterations."); 51 Uri data = Uri.fromParts("iterations", Integer.toString(iterations), null); 68 * Run tests and wait until the test has been run for iterations.
|
/external/smack/src/org/xbill/DNS/ |
NSEC3PARAMRecord.java | 12 * algorithm, salt, iterations) used for a valid, complete NSEC3 chain present 27 private int iterations; field in class:NSEC3PARAMRecord 44 * @param iterations The number of hash iterations. 48 int flags, int iterations, byte [] salt) 53 this.iterations = checkU16("iterations", iterations); 70 iterations = in.readU16(); 83 out.writeU16(iterations); [all...] |
NSEC3Record.java | 50 private int iterations; field in class:NSEC3Record 72 * @param iterations The number of hash iterations. 78 int flags, int iterations, byte [] salt, byte [] next, 84 this.iterations = checkU16("iterations", iterations); 107 iterations = in.readU16(); 124 out.writeU16(iterations); 141 iterations = st.getUInt16() [all...] |
/external/valgrind/main/drd/tests/ |
pth_barrier.c | 30 int iterations; member in struct:threadinfo 45 /** Single thread, which touches p->iterations elements of array p->array. 55 for (i = 0; i < p->iterations; i++) 67 static void barriers_and_races(const int nthread, const int iterations) 76 array = malloc(iterations * sizeof(array[0])); 91 t[i].iterations = iterations; 116 int iterations; local 119 iterations = (argc > 2) ? atoi(argv[2]) : 3; 122 barriers_and_races(nthread, iterations); [all...] |
annotate_barrier.c | 46 int iterations; member in struct:threadinfo 102 * Single thread, which touches p->iterations elements of array p->array. 113 for (i = 0; i < p->iterations; i++) 125 static void barriers_and_races(const int nthread, const int iterations) 134 array = malloc(iterations * sizeof(array[0])); 146 t[i].iterations = iterations; 163 int iterations; local 166 iterations = (argc > 2) ? atoi(argv[2]) : 3; 169 barriers_and_races(nthread, iterations); [all...] |
/frameworks/base/tests/backup/ |
backup_stress_test.sh | 17 iterations=150 47 echo "FAILED iteration $i of $iterations; $failures failures so far" 48 echo "FAILED iteration $i of $iterations; $failures failures so far" > /dev/stderr 50 printf "Iteration %d:\tPASS; remaining: %d\n" $i $(($iterations - $i - 1)) 51 printf "Iteration %d:\tPASS; remaining: %d\n" $i $(($iterations - $i - 1)) > /dev/stderr 57 if [ $i -eq $iterations ]; then 58 echo "DONE: $iterations iterations with $failures failures." 59 echo "DONE: $iterations iterations with $failures failures." > /dev/stder [all...] |
/bionic/tests/ |
benchmark_main.cpp | 114 void Benchmark::RunRepeatedlyWithArg(int iterations, int arg) { 119 fn_(iterations); 121 fn_range_(iterations, arg); 130 int iterations = 1; local 131 RunRepeatedlyWithArg(iterations, arg); 132 while (gBenchmarkTotalTimeNs < 1e9 && iterations < 1e9) { 133 int last = iterations; 134 if (gBenchmarkTotalTimeNs/iterations == 0) { 135 iterations = 1e9; 137 iterations = 1e9 / (gBenchmarkTotalTimeNs/iterations) [all...] |
/external/eigen/bench/ |
basicbenchmark.h | 8 void benchBasic_loop(const MatrixType& I, MatrixType& m, int iterations) __attribute__((noinline)); 11 void benchBasic_loop(const MatrixType& I, MatrixType& m, int iterations) 13 for(int a = 0; a < iterations; a++) 41 double benchBasic(const MatrixType& mat, int iterations, int tries) 56 benchBasic_loop<Mode>(I, m, iterations);
|
/external/icu4c/test/perf/utrie2perf/ |
utrie2perf.bat | 14 %PERF% CheckFCD -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 15 rem %PERF% CheckFCDAlwaysGet -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 16 rem %PERF% CheckFCDUTF8 -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 17 %PERF% ToNFC -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000 18 %PERF% GetBiDiClass -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
|
utrie2perf.sh | 20 $PERF CheckFCD -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000 21 # $PERF CheckFCDAlwaysGet -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000 22 # $PERF CheckFCDUTF8 -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000 23 $PERF ToNFC -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000 24 $PERF GetBiDiClass -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
dowhile-003.js | 30 function DoWhileObject( value, iterations, endvalue ) { 32 this.iterations = iterations; 48 "loop iterations", 49 object.iterations,
|
/external/eigen/demos/mandelbrot/ |
README | 9 The number of iterations, and the choice between single and double precision, are
|
/external/icu4c/test/perf/DateFmtPerf/ |
ReadMe.txt | 16 BreakItWord250: Tests word break iteration with 250 iterations. 17 BreakItWord10000: Tests word break iteration with 10000 iterations. 18 BreakItChar250: Tests character break iteration with 250 iterations. 19 BreakItChar10000: Tests character break iteration with 10000 iterations.
|
/external/llvm/test/CodeGen/R600/ |
disconnected-predset-break-bug.ll | 11 define void @loop_ge(i32 addrspace(1)* nocapture %out, i32 %iterations) nounwind { 13 %cmp5 = icmp sgt i32 %iterations, 0 17 %i.07.in = phi i32 [ %i.07, %for.body ], [ %iterations, %entry ] 23 %exitcond = icmp eq i32 %add, %iterations
|
/external/valgrind/main/memcheck/tests/ |
vcpu_fbench.stdout.exp | 2 and performance benchmark. 100 iterations will be made.
|
/external/wpa_supplicant_8/src/crypto/ |
sha1-pbkdf2.c | 15 size_t ssid_len, int iterations, unsigned int count, 45 for (i = 1; i < iterations; i++) { 63 * @iterations: Number of iterations to run 69 * iterations is set to 4096 and buflen to 32. This function is described in 73 int iterations, u8 *buf, size_t buflen) 82 if (pbkdf2_sha1_f(passphrase, ssid, ssid_len, iterations,
|
/external/eigen/bench/btl/generic_bench/timers/ |
STL_timer.hh | 37 iterations.clear(); 38 iterations.reserve(reps); 53 iterations.push_back(count); 57 return (iterations.size() < reps); 62 sort(iterations.begin(), iterations.end()); 63 return 1.0/iterations[reps/2]; 67 // For storing loop iterations of a trial 68 vector<long> iterations; member in class:STL_Timer 71 // For counting loop iterations of a tria [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
HillHeightMap.java | 49 private int iterations; // how many hills to generate
field in class:HillHeightMap 60 * @param iterations
71 * iterations is not greater that zero
73 public HillHeightMap(int size, int iterations, float minRadius,
75 if (size <= 0 || iterations <= 0 || minRadius <= 0 || maxRadius <= 0
79 + "or number of iterations is not greater that zero, "
87 this.iterations = iterations;
100 * @param iterations
109 * iterations is not greater that zero [all...] |