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

1 2 3 4 5 6

  /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/mojo/public/cpp/test_support/lib/
test_utils.cc 76 size_t iterations = 0; local
80 iterations += kGranularity;
86 1000000.0 * iterations / (end_time - start_time),
87 "iterations/second");
  /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/sandbox/linux/services/
thread_helpers.cc 68 unsigned int iterations = 0; local
70 // Poll /proc with an exponential back-off, sleeping 2^iterations nanoseconds
73 // first iterations would sleep a tiny bit more instead, which would not
86 struct timespec ts = {0, 1L << iterations /* nanoseconds */};
88 ++iterations;
90 // Crash after 30 iterations, which means having spent roughly 2s in
92 CHECK_GT(30U, iterations);
93 // In practice, this never goes through more than a couple iterations. In
96 DCHECK_GT(25U, iterations);
  /external/chromium_org/third_party/angle/tests/perf_tests/
BufferSubData.h 17 unsigned int iterations; member in struct:BufferSubDataParams
TexSubImage.h 15 unsigned int iterations; member in struct:TexSubImageParams
BufferSubData.cpp 156 strstr << iterations << " updates"; local
169 mDrawIterations = mParams.iterations;
172 assert(mParams.iterations > 0);
282 for (unsigned int it = 0; it < mParams.iterations; it++)
  /external/conscrypt/src/test/java/org/conscrypt/
FileClientSessionCacheTest.java 36 final int iterations = FileClientSessionCache.MAX_SIZE * 10; local
42 for (int i = 0; i < iterations; i++) {
  /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...]
  /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/cc/blink/
web_animation_impl.cc 82 double WebCompositorAnimationImpl::iterations() const { function in class:cc_blink::WebCompositorAnimationImpl
83 return animation_->iterations();
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationNodeTiming.cpp 58 double AnimationNodeTiming::iterations() function in class:blink::AnimationNodeTiming
135 void AnimationNodeTiming::setIterations(double iterations)
138 TimingInput::setIterationCount(timing, iterations);
  /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/benchmarks/
benchmark_main.cpp 117 void Benchmark::RunRepeatedlyWithArg(int iterations, int arg) {
122 fn_(iterations);
124 fn_range_(iterations, arg);
133 int iterations = 1; local
134 RunRepeatedlyWithArg(iterations, arg);
135 while (g_benchmark_total_time_ns < 1e9 && iterations < 1e9) {
136 int last = iterations;
137 if (g_benchmark_total_time_ns/iterations == 0) {
138 iterations = 1e9;
140 iterations = 1e9 / (g_benchmark_total_time_ns/iterations)
    [all...]
  /external/chromium_org/content/common/gpu/client/
gl_helper_benchmark.cc 185 int iterations = 0; local
189 iterations++;
195 if (iterations > 2000) {
214 float ms = (end_time - start_time).InMillisecondsF() / iterations;
  /external/chromium_org/media/cast/net/rtcp/
rtcp_unittest.cc 173 const int iterations = 12; local
175 .Times(iterations);
185 for (int i = 0; i < iterations; ++i) {
  /external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
uperf.h 88 * e.g: Number of breaks / iterations for break iterator
164 int32_t iterations; member in class:UPerfTest

Completed in 1481 milliseconds

1 2 3 4 5 6