HomeSort by relevance Sort by last modified time
    Searched full:iterations (Results 1 - 25 of 911) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/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
  /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 );
  /external/chromium_org/chrome/common/extensions/docs/server2/
host_file_system_iterator_test.py 21 iterations = []
25 iterations.append(channel_info)
27 return (iterations, callback)
52 iterations, callback = _GetIterationTracker(0)
56 self.assertEqual(len(iterations), 25)
61 iterations, callback = _GetIterationTracker(
66 self.assertEqual(len(iterations), 22)
70 iterations, callback = _GetIterationTracker(5)
74 self.assertEqual([], iterations)
78 iterations, callback = _GetIterationTracker(6
    [all...]
  /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...]
  /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...]
  /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...]
  /external/chromium_org/sandbox/linux/services/
thread_helpers.cc 50 unsigned int iterations = 0; local
52 // Poll /proc with an exponential back-off, sleeping 2^iterations nanoseconds
55 // first iterations would sleep a tiny bit more instead, which would not
68 struct timespec ts = {0, 1L << iterations /* nanoseconds */};
70 ++iterations;
72 // Crash after 30 iterations, which means having spent roughly 2s in
74 CHECK_GT(30U, iterations);
75 // In practice, this never goes through more than a couple iterations. In
78 DCHECK_GT(25U, iterations);
  /external/chromium_org/tools/page_cycler/common/
start.js 35 var iterations = document.getElementById('iterations').value;
41 url += 'index.html?n=' + iterations + '&i=0&p=0&ts=' + ts + '&td=0';
52 var label = document.createTextNode('Iterations: ');
56 input.setAttribute('id', 'iterations');
58 var iterations = getopt('iterations');
59 input.setAttribute('value', iterations ? iterations : '5');
  /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/chromium_org/third_party/icu/source/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/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
  /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/chromium_org/tools/page_cycler/webpagereplay/
start.js 61 var label = document.createTextNode('Iterations: ');
65 var iterations = getopt('iterations');
66 input.setAttribute('name', 'iterations');
67 input.setAttribute('value', iterations ? iterations : '5');
99 var iterations = getopt('iterations');
108 if (iterations) {
109 testConfig['iterations'] = iterations
    [all...]
  /external/chromium_org/third_party/icu/source/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/chromium_org/tools/page_cycler/webpagereplay/extension/
page_cycler.js 16 var iterations = window.iterations;
22 reportUrl += "?n=" + iterations;
23 reportUrl += "&i=" + iterations * pages.length; // "cycles"

Completed in 368 milliseconds

1 2 3 4 5 6 7 8 91011>>