HomeSort by relevance Sort by last modified time
    Searched defs:iterations (Results 26 - 50 of 420) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/extras/alloc-stress/
mem-pressure.cpp 50 " -i N: Number of iterations to run the alloc process.\n"
63 int iterations = 0; local
72 iterations = atoi(optarg);
94 while (iterations == 0 || i < iterations) {
  /system/extras/pssbench/
main.cpp 11 int iterations = 1; variable
66 iterations = atoi(optarg);
82 for (int i = 0; i < iterations; ++i)
86 printf("iterations:%d pid:%d pss:%lld\n", iterations, pid, (long long)pss);
  /tools/test/connectivity/acts/tests/google/bt/audio_lab/
ThreeButtonDongleTest.py 27 iterations = 10 variable in class:ThreeButtonDongleTest
113 for i in range(self.iterations):
125 """Test pairing for multiple iterations.
131 2. Press the next button on dongle for pre-definied iterations.
145 for _ in range(self.iterations):
157 2. Press the next button on dongle for pre-definied iterations.
171 for _ in range(self.iterations):
183 2. Press the next button on dongle for pre-definied iterations.
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ui/
DynamicTableModelTest.java 69 // should stop at 4 iterations since the table can only hold that many:
71 int iterations = 0; local
74 iterations++;
76 assertEquals(4, iterations);
78 // now set a dynamic number of columns. iterations should equal however
82 iterations = 0;
85 iterations++;
87 assertEquals(10, iterations);
  /external/google-benchmark/src/
benchmark_api_internal.h 32 size_t iterations; member in struct:benchmark::internal::Benchmark::Instance
  /external/libcxx/utils/google-benchmark/src/
benchmark_api_internal.h 32 size_t iterations; member in struct:benchmark::internal::Benchmark::Instance
  /external/ltp/testcases/kernel/syscalls/execve/
execve05.c 57 int iterations; variable
90 iterations = atoi(av[1]);
96 iterations, fname1, fname2, count, getpid());
99 if (iterations == 0) {
101 getpid(), prog, iterations, fname1, fname2);
106 sprintf(iter, "%d", iterations - 1);
126 sprintf(iter, "%d", iterations);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/
stress.c 104 long long iterations = 0; variable
263 iterations++;
270 output("pthread_exit stress test PASSED -- %llu iterations\n",
271 iterations);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_once/
stress.c 82 long long iterations = 0; variable
222 iterations++;
227 output("pthread_once stress test PASSED -- %llu iterations\n",
228 iterations);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/
stress.c 97 long long iterations = 0; variable
334 iterations++;
341 output("pthread_exit stress test PASSED -- %llu iterations\n",
342 iterations);
  /external/wayland/tests/
array-test.c 69 const unsigned int iterations = 1321; /* this is arbitrary */ local
77 for (i = 0; i < iterations; i++) {
89 for (i = 0; i < iterations; ++i) {
104 const int iterations = 1529; /* this is arbitrary */ local
112 for (i = 0; i < iterations; i++) {
123 for (i = 0; i < iterations; i++) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
benchmark_api_internal.h 31 size_t iterations; member in struct:benchmark::internal::Benchmark::Instance
  /art/tools/dexfuzz/src/dexfuzz/listeners/
UpdatingConsoleListener.java 37 long iterations; field in class:UpdatingConsoleListener
42 System.out.println("|Iterations|VerifyFail|MutateFail|Timed Out |Successful|Divergence|");
63 iterations++;
69 iterations, failedVerification, failedMutation, timedOut, success,
  /cts/tests/aslr/src/
AslrMallocTest.cpp 108 size_t iterations = 2 * (1 << minEntropyBits); local
111 ALOGV("running %zu iterations for allocation size %zu",
112 iterations, size);
117 for (size_t i = 0; i < iterations; ++i) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
AbstractLinearOptimizer.java 30 * settings and iterations counters.</p>
37 /** Default maximal number of iterations allowed. */
64 /** Maximal number of iterations allowed. */
67 /** Number of iterations already performed. */
68 private int iterations; field in class:AbstractLinearOptimizer
89 return iterations;
92 /** Increment the iterations counter by 1.
94 * of iterations is exceeded
98 if (++iterations > maxIterations) {
115 iterations = 0
    [all...]
  /external/autotest/tko/
frontend.py 243 def iterations(self): member in class:test
245 Caching function for iterations
292 iterations = []
295 iterations.append(klass(*row))
296 return iterations
  /external/linux-kselftest/tools/testing/selftests/sync/
sync_stress_consumer.c 55 int iterations; member in struct:__anon26889
69 int iterations = test_data_mpsc.iterations; local
71 for (i = 0; i < iterations; i++) {
81 if ((iterations + id) % 8 != 0) {
111 int iterations = test_data_mpsc.iterations; local
114 for (it = 1; it <= iterations; it++) {
132 if (iterations % 8 != 0) {
155 int iterations = 1 << 12 local
    [all...]
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_getschedparam/
stress.c 83 long long iterations = 0; variable
130 iterations++;
301 output("pthread_getschedparam stress test PASSED -- %llu iterations\n",
302 iterations);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_kill/
stress.c 81 long long iterations = 0; variable
134 iterations++;
150 iterations++;
322 output("pthread_kill stress test PASSED -- %llu iterations\n",
323 iterations);
  /external/mesa3d/src/compiler/glsl/
loop_controls.cpp 115 /* Make sure that the calculated number of iterations satisfies the exit
205 int iterations = ls->limiting_terminator->iterations; local
206 if (iterations == 0) {
221 if (t->iterations < 0)
  /external/valgrind/drd/tests/
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...]
  /external/vixl/examples/aarch32/
mandelbrot.cc 108 // Get number of iterations.
111 // Perform the iterations of z(n+1) = zn^2 + c using SIMD.
214 uint32_t iterations = 1000; local
215 (*mandelbrot_func)(iterations);
  /libcore/luni/src/test/java/libcore/javax/crypto/
SecretKeyFactoryTest.java 40 * The number of iterations should be higher for production
44 private static final int ITERATIONS = 1024;
76 KeySpec ks = new PBEKeySpec(null, SALT, ITERATIONS);
82 KeySpec ks = new PBEKeySpec(new char[0], SALT, ITERATIONS);
88 KeySpec ks = new PBEKeySpec(PASSWORD, SALT, ITERATIONS);
95 KeySpec ks = new PBEKeySpec(null, SALT, ITERATIONS, KEY_LENGTH);
102 KeySpec ks = new PBEKeySpec(new char[0], SALT, ITERATIONS, KEY_LENGTH);
108 KeySpec ks = new PBEKeySpec(PASSWORD, SALT, ITERATIONS, KEY_LENGTH);
119 test_PBKDF2_UTF8(PASSWORD, SALT, ITERATIONS, KEY_LENGTH, expected);
120 test_PBKDF2_8BIT(PASSWORD, SALT, ITERATIONS, KEY_LENGTH, expected)
134 int iterations = 5; local
156 int iterations = 500; local
177 int iterations = 4096; local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/
CubicBezierInterpolator.java 76 final int iterations = 8; local
89 for (int i = 0; i < iterations; i++) {
108 for (int i = 0; Math.abs(value - x) > epsilon && i < iterations; i++) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
AbstractScalarDifferentiableOptimizer.java 35 * settings, iterations and evaluations counting.</p>
42 /** Default maximal number of iterations allowed. */
60 /** Maximal number of iterations allowed. */
63 /** Number of iterations already performed. */
64 private int iterations; field in class:AbstractScalarDifferentiableOptimizer
103 return iterations;
136 /** Increment the iterations counter by 1.
138 * of iterations is exceeded
142 if (++iterations > maxIterations) {
165 * of iterations is exceede
    [all...]

Completed in 633 milliseconds

12 3 4 5 6 7 8 91011>>