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

1 2 3 4

  /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/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);
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
ptw32_callUserDestroyRoutines.c 84 int iterations = 0; local
96 iterations++;
171 if (value != NULL && iterations <= PTHREAD_DESTRUCTOR_ITERATIONS)
  /external/chromium_org/tools/page_cycler/database/
head.js 9 var iterations; variable
68 if (cycle == iterations) {
79 var url = doc + '?n=' + iterations + '&i=' + cycle +
105 iterations = f[1];
  /external/chromium_org/tools/page_cycler/indexed_db/
head.js 9 var iterations; variable
68 if (cycle == iterations) {
79 var url = doc + '?n=' + iterations + '&i=' + cycle +
105 iterations = f[1];
  /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/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...]
  /libcore/crypto/src/test/java/org/conscrypt/
FileClientSessionCacheTest.java 36 final int iterations = FileClientSessionCache.MAX_SIZE * 10; local
42 for (int i = 0; i < iterations; i++) {
  /packages/apps/Gallery2/jni/filters/
kmeans.cc 52 int iterations = 20; local
59 stride, iterations, s);
63 iterations = 8;
68 dimension, stride, iterations, finalCentroids);
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_animation_impl.cc 63 int WebAnimationImpl::iterations() const { return animation_->iterations(); } function in class:webkit::WebAnimationImpl
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
IterativeFilter.java 40 private int iterations; field in class:IterativeFilter
58 return this.iterations * margin + super.getMargin(size, margin);
61 public void setIterations(int iterations) {
62 this.iterations = iterations;
66 return this.iterations;
90 for (int i = 0; i < this.iterations; i++) {
  /external/chromium_org/third_party/mesa/src/src/glsl/
loop_unroll.cpp 90 int iterations; local
100 iterations = ls->max_iterations;
102 /* Don't try to unroll loops where the number of iterations is not known
105 if (iterations < 0)
108 /* Don't try to unroll loops that have zillions of iterations either.
110 if (iterations > (int) max_iterations)
117 if (count.fail || count.nodes * iterations > (int)max_iterations * 5)
132 iterations = 1;
195 for (int i = 0; i < iterations; i++) {
226 for (int i = 0; i < iterations; i++)
    [all...]
loop_controls.cpp 114 /* Make sure that the calculated number of iterations satisfies the exit
244 const int iterations = calculate_iterations(init, limit, local
247 if (iterations >= 0) {
251 if (iterations < max_iterations) {
258 max_iterations = iterations;
  /external/mesa3d/src/glsl/
loop_unroll.cpp 90 int iterations; local
100 iterations = ls->max_iterations;
102 /* Don't try to unroll loops where the number of iterations is not known
105 if (iterations < 0)
108 /* Don't try to unroll loops that have zillions of iterations either.
110 if (iterations > (int) max_iterations)
117 if (count.fail || count.nodes * iterations > (int)max_iterations * 5)
132 iterations = 1;
195 for (int i = 0; i < iterations; i++) {
226 for (int i = 0; i < iterations; i++)
    [all...]
  /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...]
  /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/content/common/gpu/client/
gl_helper_benchmark.cc 194 int iterations = 0; local
198 iterations++;
204 if (iterations > 2000) {
223 float ms = (end_time - start_time).InMillisecondsF() / iterations;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
AnimationTranslationUtil.cpp 271 int iterations = (animation && animation->isIterationCountSet()) ? animation->iterationCount() : 1; local
272 webAnimation->setIterations(iterations);
  /external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
uperf.h 83 * e.g: Number of breaks / iterations for break iterator
164 int32_t iterations; member in class:UPerfTest
  /external/icu4c/tools/ctestfw/unicode/
uperf.h 88 * e.g: Number of breaks / iterations for break iterator
164 int32_t iterations; member in class:UPerfTest
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
FluidSimHeightMap.java 55 private int iterations; // number of iterations field in class:FluidSimHeightMap
68 * @param iterations
69 * the number of iterations to do
86 * iterations is not greater that zero, or the minimum initial height
89 public FluidSimHeightMap(int size, int iterations, float minInitialHeight, float maxInitialHeight, float viscosity, float waveSpeed, float timestep, float nodeDistance, long seed) throws Exception {
90 if (size <= 0 || iterations <= 0 || minInitialHeight >= maxInitialHeight) {
93 + "or number of iterations is not greater that zero, "
100 this.iterations = iterations;
    [all...]
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...]

Completed in 591 milliseconds

1 2 3 4