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

1 2 3 45 6 7 8 91011>>

  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 64 String iterations = (String) icicle.get("iterations"); local
74 if (iterations != null ) {
75 mIterations = Integer.parseInt(iterations);
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBench.java 52 int iterations = 0; local
58 if ("iterations".equals(scheme)) {
59 iterations = Integer.parseInt(uri.getSchemeSpecificPart());
66 mView.setLoops(iterations);
  /libcore/luni/src/test/java/com/android/org/bouncycastle/crypto/digests/
DigestTest.java 39 final int ITERATIONS = 10;
60 for (int j = 0; j < ITERATIONS; j++) {
86 System.out.println("Time for " + ITERATIONS + " x old hash processing: " + oldTime + " ms");
87 System.out.println("Time for " + ITERATIONS + " x new hash processing: " + newTime + " ms");
  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 64 unsigned int iterations; member in struct:options
69 1000, // Iterations
140 case 'n': // iterations
141 options.iterations = strtoul(optarg, &chptr, 10);
143 cerr << "Invalid iterations specified of: " << optarg << endl;
146 if (options.iterations < 1) {
167 cerr << " -n num - iterations" << endl;
188 cout << "iterations: " << options.iterations << endl;
259 for (unsigned int iter = 0; iter < options.iterations; iter++)
    [all...]
  /external/chromium/crypto/
symmetric_key_openssl.cc 46 size_t iterations,
58 salt.length(), iterations,
  /external/chromium_org/crypto/
symmetric_key_openssl.cc 46 size_t iterations,
61 salt.length(), iterations,
  /external/chromium_org/third_party/WebKit/ManualTests/
harfbuzz-mouse-selection-crash.html 12 var ITERATIONS = 10000;
27 for(i=0;i<ITERATIONS;i++) {
  /frameworks/base/core/java/android/test/
PerformanceTestCase.java 44 * harness to decide the number of iterations.
53 * @return int Maximum number of iterations to run, or 0 to let the caller
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaAudioManagerTest.java 210 //Test case 4: test audio focus registering and use over 3000 iterations
213 final int ITERATIONS = 3000;
216 for (int i = 0 ; i < ITERATIONS ; i++) {
224 assertTrue("testAudioFocusListenerLifeCycle : tested" + ITERATIONS +" iterations", true);
230 final int ITERATIONS = 1000;
236 for (int i = 0 ; i < ITERATIONS ; i++) {
246 mAudioFocusListener.mFocusChangeCounter == ITERATIONS * 2);
  /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++) {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicLongMapTest.java 25 private static final int ITERATIONS = 100;
54 for (int i = 0; i < ITERATIONS; i++) {
64 assertEquals(ITERATIONS, (int) map.get(key));
87 for (int i = 0; i < ITERATIONS; i++) {
97 assertEquals(ITERATIONS, (int) map.get(key));
120 for (int i = 0; i < ITERATIONS; i++) {
130 assertEquals(-1 * ITERATIONS, (int) map.get(key));
153 for (int i = 0; i < ITERATIONS; i++) {
163 assertEquals(-1 * ITERATIONS, (int) map.get(key));
187 for (int i = 0; i < ITERATIONS; i++)
    [all...]
  /external/chromium_org/third_party/icu/source/tools/ctestfw/
uperf.cpp 34 "\t-i or --iterations Number of iterations to be performed. Requires Numeric argument\n"
36 "\t Cannot be used with --iterations\n"
52 ITERATIONS,
70 UOPTION_DEF( "iterations", 'i', UOPT_REQUIRES_ARG),
85 passes(1), iterations(0), time(0),
101 passes(1), iterations(0), time(0),
157 if(options[ITERATIONS].doesOccur) {
158 iterations = atoi(options[ITERATIONS].value)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 68 unsigned int iterations)
77 for( i = 1; i < iterations; i++){
184 * of how many iterations they have.
189 int iterations; local
276 /* Calculate the number of iterations of this loop. Keeping this
288 iterations = (int) ceilf((limit_value - counter_value.Value) /
294 iterations = (int) floorf((limit_value - counter_value.Value) /
302 && iterations > loop_max_possible_iterations(c, loop)) {
306 DBG("Loop will have %d iterations.\n", iterations);
513 unsigned int iterations; local
    [all...]
  /external/icu4c/tools/ctestfw/
uperf.cpp 38 "\t-i or --iterations Number of iterations to be performed. Requires Numeric argument\n"
40 "\t Cannot be used with --iterations\n"
56 ITERATIONS,
74 UOPTION_DEF( "iterations", 'i', UOPT_REQUIRES_ARG),
89 passes(1), iterations(0), time(0),
105 passes(1), iterations(0), time(0),
161 if(options[ITERATIONS].doesOccur) {
162 iterations = atoi(options[ITERATIONS].value)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 68 unsigned int iterations)
77 for( i = 1; i < iterations; i++){
184 * of how many iterations they have.
189 int iterations; local
276 /* Calculate the number of iterations of this loop. Keeping this
288 iterations = (int) ceilf((limit_value - counter_value.Value) /
294 iterations = (int) floorf((limit_value - counter_value.Value) /
302 && iterations > loop_max_possible_iterations(c, loop)) {
306 DBG("Loop will have %d iterations.\n", iterations);
513 unsigned int iterations; local
    [all...]
  /system/core/toolbox/
vmstat.c 74 int iterations, delay, header_interval; local
78 iterations = -1;
88 iterations = atoi(argv[++i]);
122 while ((iterations < 0) || (iterations-- > 0)) {
240 fprintf(stderr, "Usage: %s [ -h ] [ -n iterations ] [ -d delay ] [ -r header_repeat ]\n"
241 " -n iterations How many rows of data to print.\n"
  /external/opencv/cv/src/
cvmorph.cpp     [all...]
  /art/test/055-enum-performance/src/
Main.java 45 System.out.println("basis: performed " + count4 + " iterations");
46 System.out.println("test1: performed " + count1 + " iterations");
47 System.out.println("test2: performed " + count2 + " iterations");
48 System.out.println("test3: performed " + count3 + " iterations");
59 System.out.println("Iterations are taking too long!");
  /dalvik/tests/055-enum-performance/src/
Main.java 25 System.out.println("basis: performed " + count4 + " iterations");
26 System.out.println("test1: performed " + count1 + " iterations");
27 System.out.println("test2: performed " + count2 + " iterations");
28 System.out.println("test3: performed " + count3 + " iterations");
39 System.out.println("Iterations are taking too long!");
  /packages/apps/Gallery2/jni/filters/
kmeans.h 180 int iterations, T initialPicks[]){
193 for (x = 0; x < iterations; x++) {
199 x = iterations;
210 int iterations, unsigned int seed){
216 iterations, initialPicks);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
predict.def 54 /* Use number of loop iterations determined by # of iterations
57 DEF_PREDICTOR (PRED_LOOP_ITERATIONS, "loop iterations", PROB_ALWAYS,
64 /* Use number of loop iterations guessed by the contents of the loop. */
65 DEF_PREDICTOR (PRED_LOOP_ITERATIONS_GUESSED, "guessed loop iterations",
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
predict.def 54 /* Use number of loop iterations determined by # of iterations
57 DEF_PREDICTOR (PRED_LOOP_ITERATIONS, "loop iterations", PROB_ALWAYS,
64 /* Use number of loop iterations guessed by the contents of the loop. */
65 DEF_PREDICTOR (PRED_LOOP_ITERATIONS_GUESSED, "guessed loop iterations",
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
predict.def 54 /* Use number of loop iterations determined by # of iterations
57 DEF_PREDICTOR (PRED_LOOP_ITERATIONS, "loop iterations", PROB_ALWAYS,
64 /* Use number of loop iterations guessed by the contents of the loop. */
65 DEF_PREDICTOR (PRED_LOOP_ITERATIONS_GUESSED, "guessed loop iterations",
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
predict.def 54 /* Use number of loop iterations determined by # of iterations
57 DEF_PREDICTOR (PRED_LOOP_ITERATIONS, "loop iterations", PROB_ALWAYS,
64 /* Use number of loop iterations guessed by the contents of the loop. */
65 DEF_PREDICTOR (PRED_LOOP_ITERATIONS_GUESSED, "guessed loop iterations",
  /external/chromium_org/tools/perf/page_sets/tough_animation_cases/
transform_transitions.html 56 var iterations = Math.pow(2, initialValues.length);
89 if (i < iterations)
108 if (i < iterations)

Completed in 771 milliseconds

1 2 3 45 6 7 8 91011>>