Searched refs:iteration (Results 1 - 25 of 92) sorted by relevance

1234

/external/qemu/android/utils/
H A Drefset.h23 int iteration; member in struct:__anon24164
42 s->iteration = 0;
63 (_set)->iteration += 2; \
71 (_set)->iteration -= 2; \
72 if ((_set)->iteration == 1) \
H A Dreflist.h39 uint16_t iteration; member in struct:ARefList
53 l->iteration = 0;
136 _reflist_loop->iteration += 2; \
145 if (_reflist_loop->iteration & 1) \
160 (_reflist_loop->iteration |= 1, *_reflist_loop_at = NULL)
163 (_reflist_loop->iteration |= 1, *_reflist_loop_at = (val))
170 _reflist->iteration += 2; \
178 _reflist->iteration -= 2; \
179 if (_reflist->iteration == 1) \
199 _reflist->iteration |
[all...]
H A Drefset.c114 /* You can't add items to a set during iteration! */
115 AASSERT(s->iteration == 0);
127 if (s->iteration == 0) {
145 if (s->iteration == 0) {
155 s->iteration |= 1;
169 s->iteration = 0;
H A Dreflist.c39 if (l->iteration > 0) {
44 l->iteration |= 1;
144 if (l->iteration == 0) {
163 if (l->iteration > 0) {
166 l->iteration |= 1;
227 if (l->iteration & 1) {
239 l->iteration = 0;
/external/ceres-solver/include/ceres/
H A Diteration_callback.h31 // When an iteration callback is specified, Ceres calls the callback
43 // iteration of the minimization.
46 : iteration(0),
64 // Current iteration number.
65 int32 iteration; member in struct:ceres::IterationSummary
70 // Note: step_is_valid is false when iteration = 0.
78 // Note: step_is_nonmonotonic is false when iteration = 0;
90 // Note: step_is_successful is false when iteration = 0.
97 // iteration. This can be positive or negative.
111 // Size of the trust region at the end of the current iteration
[all...]
/external/chromium_org/v8/tools/
H A Dfuzz-harness.sh74 iteration = 0
76 + while iteration < 100:
77 iteration += 1
78 logfilename = "w%d" % iteration
/external/ceres-solver/internal/ceres/
H A Dtrust_region_minimizer.h55 bool MaybeDumpLinearLeastSquaresProblem(const int iteration,
H A Dline_search_minimizer.cc113 iteration_summary.iteration = 0;
208 if (iteration_summary.iteration >= options.max_num_iterations) {
223 iteration_summary.iteration = summary->iterations.back().iteration + 1;
228 if (iteration_summary.iteration == 1) {
252 // Restart line search direction with gradient descent on first iteration
261 << ", failed to produce a valid new direction at iteration: "
262 << iteration_summary.iteration << ". Restarting, number of "
279 // iteration.
281 (iteration_summary.iteration
[all...]
/external/skia/bench/
H A DDeferredSurfaceCopyBench.cpp59 for (int iteration = 0; iteration < N; iteration++) {
/external/chromium/net/disk_cache/
H A Dstress_cache.cc54 int RunSlave(int iteration) { argument
59 cmdline.AppendArg(base::IntToString(iteration));
91 // iteration is the current crash cycle, so the entries on the cache are marked
93 void StressTheCache(int iteration) { argument
113 printf("Iteration %d, initial entries: %d\n", iteration,
152 "i: %d iter: %d, size: %d, truncate: %d", i, iteration, size,
235 long int iteration = strtol(argv[1], &end, 0); local
242 StressTheCache(iteration);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationEffect.h61 virtual PassOwnPtr<CompositableValueMap> sample(int iteration, double fraction) const = 0;
H A DKeyframeAnimationEffect.h83 virtual PassOwnPtr<CompositableValueMap> sample(int iteration, double fraction) const OVERRIDE;
107 PassRefPtr<CompositableValue> sample(int iteration, double offset) const;
H A DKeyframeAnimationEffect.cpp149 PassOwnPtr<AnimationEffect::CompositableValueMap> KeyframeAnimationEffect::sample(int iteration, double fraction) const argument
154 map->add(iter->key, iter->value->sample(iteration, fraction));
280 PassRefPtr<AnimationEffect::CompositableValue> KeyframeAnimationEffect::PropertySpecificKeyframeGroup::sample(int iteration, double offset) const argument
283 ASSERT_UNUSED(iteration, iteration >= 0);
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dchoose_mobile_network.css12 -webkit-animation-iteration-count: infinite;
H A Dnetwork_menu.css41 -webkit-animation-iteration-count: infinite;
/external/valgrind/main/memcheck/tests/
H A Dvcpu_fbench.stdout.exp7 adjust iteration count so the benchmark runs about five minutes.
/external/chromium_org/net/disk_cache/
H A Dstress_cache.cc55 int RunSlave(int iteration) { argument
60 cmdline.AppendArg(base::IntToString(iteration));
101 // iteration is the current crash cycle, so the entries on the cache are marked
103 void StressTheCache(int iteration) { argument
130 printf("Iteration %d, initial entries: %d\n", iteration,
172 "i: %d iter: %d, size: %d, truncate: %d ", i, iteration,
285 long int iteration = strtol(argv[1], &end, 0); local
292 StressTheCache(iteration);
/external/chromium_org/third_party/openssl/openssl/crypto/rc4/asm/
H A Drc4-ia64.pl65 # of the 2nd iteration is performed BEFORE the SWP of the first
66 # iteration. Fortunately, this is easy to detect (I of the 1st
67 # iteration will be equal to J of the 2nd iteration) and when this
68 # happens, we simply forward the proper value from the 1st iteration
70 # of S[I] from the first iteration (thanks to the fact that SWP
74 # iteration issues at the same time as the LDI of the 3rd iteration.
129 # - Pipelined, the loop can execute in 3 cycles/iteration and
216 local ($iteration,
[all...]
/external/openssl/crypto/rc4/asm/
H A Drc4-ia64.pl65 # of the 2nd iteration is performed BEFORE the SWP of the first
66 # iteration. Fortunately, this is easy to detect (I of the 1st
67 # iteration will be equal to J of the 2nd iteration) and when this
68 # happens, we simply forward the proper value from the 1st iteration
70 # of S[I] from the first iteration (thanks to the fact that SWP
74 # iteration issues at the same time as the LDI of the 3rd iteration.
129 # - Pipelined, the loop can execute in 3 cycles/iteration and
216 local ($iteration,
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest-listener_test.cc66 int iteration) {
69 << "(" << iteration << ")";
110 int iteration) {
113 << "(" << iteration << ")";
65 OnTestIterationStart(const UnitTest& , int iteration) argument
109 OnTestIterationEnd(const UnitTest& , int iteration) argument
/external/chromium_org/testing/gtest/test/
H A Dgtest-listener_test.cc65 int iteration) {
68 << "(" << iteration << ")";
109 int iteration) {
112 << "(" << iteration << ")";
64 OnTestIterationStart(const UnitTest& , int iteration) argument
108 OnTestIterationEnd(const UnitTest& , int iteration) argument
/external/gtest/test/
H A Dgtest-listener_test.cc66 int iteration) {
69 << "(" << iteration << ")";
110 int iteration) {
113 << "(" << iteration << ")";
65 OnTestIterationStart(const UnitTest& , int iteration) argument
109 OnTestIterationEnd(const UnitTest& , int iteration) argument
/external/protobuf/gtest/test/
H A Dgtest-listener_test.cc75 int iteration) {
78 << "(" << iteration << ")";
119 int iteration) {
122 << "(" << iteration << ")";
74 OnTestIterationStart(const UnitTest& , int iteration) argument
118 OnTestIterationEnd(const UnitTest& , int iteration) argument
/external/chromium_org/google_apis/gaia/
H A Doauth_request_signer_unittest.cc61 for (int iteration = 0; iteration < kIterations; ++iteration) {
/external/chromium_org/chrome/test/logging/win/
H A Dtest_log_collector.cc63 int iteration) OVERRIDE {
64 default_result_printer_->OnTestIterationStart(unit_test, iteration);
117 int iteration) OVERRIDE {
118 default_result_printer_->OnTestIterationEnd(unit_test, iteration);

Completed in 629 milliseconds

1234