HomeSort by relevance Sort by last modified time
    Searched refs:iterations (Results 151 - 175 of 286) sorted by null

1 2 3 4 5 67 8 91011>>

  /system/core/toolbox/
top.c 89 static int max_procs, delay, iterations, threads; variable
123 iterations = -1;
141 iterations = atoi(argv[++i]);
188 while ((iterations == -1) || (iterations-- > 0)) {
570 fprintf(stderr, "Usage: %s [ -m max_procs ] [ -n iterations ] [ -d delay ] [ -s sort_column ] [ -t ] [ -h ]\n"
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 350 final int iterations = 1000; local
355 for (int j = 0; j < iterations; j++) {
368 assertEquals(numThreads * iterations + 1, (int) nonThreadSafe.get());
  /external/ceres-solver/include/ceres/
solver.h 268 // Maximum number of trial step size iterations during each line search,
333 // ones corresponding to the minimum cost over all iterations.
337 // Maximum number of iterations for the minimizer to run for.
607 // Generally speaking, inner iterations make significant progress
610 // iterations is not worth it.
613 // inner iterations drops below inner_iteration_tolerance, the use
614 // of inner iterations in subsequent trust region minimizer
615 // iterations is disabled.
618 // Minimum number of iterations for which the linear solver should
622 // Maximum number of iterations for which the linear solver shoul
763 vector<IterationSummary> iterations; member in struct:ceres::Solver::Summary
    [all...]
  /external/chromium_org/cc/animation/
animation.h 78 double iterations() const { return iterations_; } function in class:cc::Animation
144 // of iterations, returns the relative time in the current iteration.
animation_unittest.cc 21 scoped_ptr<Animation> CreateAnimation(double iterations,
30 to_return->set_iterations(iterations);
35 scoped_ptr<Animation> CreateAnimation(double iterations, double duration) {
36 return CreateAnimation(iterations, duration, 1);
39 scoped_ptr<Animation> CreateAnimation(double iterations) {
40 return CreateAnimation(iterations, 1, 1);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
printing.py 103 def print_found(self, num_all_test_files, num_to_run, repeat_each, iterations):
105 if repeat_each * iterations > 1:
106 found_str += ' (%d times each: --repeat-each=%d --iterations=%d)' % (repeat_each * iterations, repeat_each, iterations)
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_unittest_helper.cc 400 int iterations = 0; local
414 ++iterations;
415 ASSERT_LE(iterations, kExpectedIterations);
417 ASSERT_EQ(kExpectedIterations, iterations);
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IterativeSolverBase.h 135 /** \returns the max number of iterations */
141 /** Sets the max number of iterations */
148 /** \returns the number of iterations performed during the last solve */
149 int iterations() const function in class:Eigen::IterativeSolverBase
189 /** \returns Success if the iterations converged, and NoConvergence otherwise. */
  /external/netperf/
netcpu_procstat.c 112 calibrate_idle_rate (int iterations, int interval)
  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 467 ArrayList<Parcelable> iterations = timing.getParcelableArrayList( local
469 assertNotNull(iterations);
470 assertEquals(labels.size(), iterations.size());
472 Bundle iteration = (Bundle)iterations.get(i);
  /external/chromium_org/crypto/
ec_private_key_nss.cc 235 int iterations,
252 iterations,
  /external/chromium_org/third_party/tlslite/tlslite/utils/
cryptomath.py 233 def isPrime(n, iterations=5, display=False):
247 for count in range(iterations):
  /external/chromium_org/v8/test/mjsunit/harmony/
module-recompile.js 34 var N = 1e5; // Number of loop iterations that trigger optimization.
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifHeaderParser.java 281 int iterations = 0; local
283 iterations++;
  /prebuilts/misc/common/ub-janktesthelper/
ub-janktesthelper.jar 
  /external/aac/libAACenc/src/
qc_main.cpp 153 AAC_ENCODER_ERROR FDKaacEnc_reduceBitConsumption(int* iterations,
900 INT iterations[(1)][(8)]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
manager.py 235 self._printer.print_found(len(test_names), len(tests_to_run), self._options.repeat_each, self._options.iterations)
256 initial_results = self._run_tests(tests_to_run, tests_to_skip, self._options.repeat_each, self._options.iterations,
269 retry_results = self._run_tests(tests_to_retry, tests_to_skip=set(), repeat_each=1, iterations=1,
321 def _run_tests(self, tests_to_run, tests_to_skip, repeat_each, iterations, num_workers, retrying):
324 for _ in xrange(iterations):
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 890 int iterations = 0; \/\/ Number of halving operations to perform after the initial resize local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationTest.cpp 226 setV8ObjectPropertyAsNumber(timingInput, "iterations", 10);
239 EXPECT_EQ(10, specified->iterations());
303 EXPECT_EQ(1, specified->iterations());
305 EXPECT_EQ(10, specified->iterations());
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
pseudotcp_unittest.cc 345 void TestPingPong(int size, int iterations) {
347 iterations_remaining_ = iterations;
364 // number of iterations have completed.
367 LOG(LS_INFO) << "Performed " << iterations << " pings in "
  /external/lldb/source/Expression/
IRMemoryMap.cpp 69 for (int iterations = 0; iterations < 16; ++iterations)
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceProcessorTest.java     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
HashtableTest.java 522 final int iterations = 10000; local
526 for (int i = 0; i < iterations; i++) {
534 for (int i = 0; i < iterations; i++) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
AdtProjectTest.java 118 int iterations = 0; local
120 if (iterations == 100) {
131 iterations++;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftest.py 52 def __init__(self, metric, unit=None, iterations=None):
54 self._iterations = iterations or []

Completed in 1966 milliseconds

1 2 3 4 5 67 8 91011>>