Searched defs:iteration (Results 1 - 25 of 42) sorted by relevance

12

/external/qemu/android/utils/
H A Drefset.h26 int iteration; member in struct:__anon29213
45 s->iteration = 0;
66 (_set)->iteration += 2; \
74 (_set)->iteration -= 2; \
75 if ((_set)->iteration == 1) \
H A Dreflist.h43 uint16_t iteration; member in struct:ARefList
57 l->iteration = 0;
140 _reflist_loop->iteration += 2; \
149 if (_reflist_loop->iteration & 1) \
164 (_reflist_loop->iteration |= 1, *_reflist_loop_at = NULL)
167 (_reflist_loop->iteration |= 1, *_reflist_loop_at = (val))
174 _reflist->iteration += 2; \
182 _reflist->iteration -= 2; \
183 if (_reflist->iteration == 1) \
203 _reflist->iteration |
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DInertAnimation.cpp55 double iteration = currentIteration(); local
56 ASSERT(iteration >= 0);
57 // FIXME: Handle iteration values which overflow int.
58 return m_effect->sample(static_cast<int>(iteration), timeFraction(), iterationDuration());
H A DInterpolation.cpp47 void Interpolation::interpolate(int iteration, double fraction) const argument
49 if (m_cachedFraction != fraction || m_cachedIteration != iteration) {
51 m_cachedIteration = iteration;
H A DKeyframeEffectModel.cpp58 PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > KeyframeEffectModelBase::sample(int iteration, double fraction, double iterationDuration) const argument
60 ASSERT(iteration >= 0);
H A DAnimation.cpp150 double iteration = currentIteration(); local
151 ASSERT(iteration >= 0);
152 // FIXME: Handle iteration values which overflow int.
153 OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > interpolations = m_effect->sample(static_cast<int>(iteration), timeFraction(), iterationDuration());
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_posix_test.cc42 static void SpawnThread(uptr iteration) { argument
46 reinterpret_cast<void *>(iteration)));
/external/jemalloc/test/unit/
H A Dprof_accum.c20 alloc_from_permuted_backtrace(unsigned thd_ind, unsigned iteration) argument
23 return (alloc_0(thd_ind*NALLOCS_PER_THREAD + iteration));
/external/ceres-solver/include/ceres/
H A Diteration_callback.h31 // When an iteration callback is specified, Ceres calls the callback
44 // iteration of the minimization.
47 : iteration(0),
66 // Current iteration number.
67 int32 iteration; member in struct:ceres::IterationSummary
72 // Note: step_is_valid is false when iteration = 0.
80 // Note: step_is_nonmonotonic is false when iteration = 0;
92 // Note: step_is_successful is false when iteration = 0.
99 // iteration. This can be positive or negative.
116 // Size of the trust region at the end of the current iteration
[all...]
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DIterationController.h6 /* NOTE The class IterationController has been adapted from the iteration
68 * This class has been adapted from the iteration class of GMM++ and ITL libraries.
79 size_t m_nit; ///< iteration number
110 /* change the user-definable callback, called after each iteration */
116 size_t iteration() const { return m_nit; } function in class:Eigen::IterationController
/external/libunwind/tests/
H A DGia64-test-rbs.c51 typedef int spill_func_t (long iteration, int (*next_func[])());
53 extern int loadup (long iteration, int *values, int (*next_func[])());
57 extern int rbs_spill_##n (long iteration, int (*next_func[])())
93 unwind_and_resume (long iteration, int (*next_func[])()) argument
101 printf (" %s(iteration=%ld, next_func=%p)\n",
102 __FUNCTION__, iteration, next_func);
/external/chromium_org/base/test/launcher/
H A Dtest_results_tracker.cc157 // Start with a fresh state for new iteration.
336 int iteration, TestStatusMap* map) const {
338 per_iteration_data_[iteration].results.begin();
339 j != per_iteration_data_[iteration].results.end();
335 GetTestStatusForIteration( int iteration, TestStatusMap* map) const argument
/external/chromium_org/cc/animation/
H A Danimation.cc224 // Calculate the iteration time
232 // Calculate the current iteration
233 int iteration; local
235 iteration = 0;
237 iteration = ceil(iteration_start_ + iterations_ - 1);
239 iteration = static_cast<int>(scaled_active_time / curve_->Duration());
242 // iteration
244 (direction_ == Alternate && iteration % 2 == 1) ||
245 (direction_ == AlternateReverse && iteration % 2 == 0);
/external/chromium_org/net/disk_cache/blockfile/
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/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.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/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/opencv/cv/src/
H A Dcvsnakes.cpp88 int iteration = 0; local
173 iteration++;
388 if( (criteria.type & CV_TERMCRIT_ITER) && (iteration >= criteria.max_iter) )
/external/chromium_org/components/storage_monitor/
H A Dvolume_mount_watcher_win.cc223 int iteration) {
262 iteration == 0 ? LOCK_TIMEOUT : LOCK_TIMEOUT2,
267 if (iteration < kNumLockRetries) {
274 device, callback, task_runner, iteration + 1),
219 EjectDeviceInThreadPool( const base::FilePath& device, base::Callback<void(StorageMonitor::EjectStatus)> callback, scoped_refptr<base::SequencedTaskRunner> task_runner, int iteration) argument
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dbencher674 doublePuts($stderr,file," if (__bencher_index >= #{$warmup}) print(\"#{name}: #{plan.vm}: #{plan.iteration}: \" + (__bencher_index - #{$warmup}) + \": Time: \"+(after-before));");
692 doublePuts($stderr,file,"print(\"#{name}: #{plan.vm}: #{plan.iteration}: #{innerIndex}: Time: \"+__bencher_run(#{benchPath.inspect}));")
703 doublePuts($stderr,file," debug(\"#{name}: #{plan.vm}: #{plan.iteration}: \" + (__bencher_count - #{$warmup}) + \": Time: \" + result);")
776 def planForDescription(plans, benchFullname, vmName, iteration)
780 result = plans.select{|v| v.suite.name == suiteName and v.benchmark.name == benchName and v.vm.name == vmName and v.iteration == iteration}
811 plan.iteration
1107 def initialize(benchmark, vm, iteration)
1110 @iteration = iteration
1125 def iteration method in class:BenchRunPlan
1232 def iteration method in class:BenchPlan
[all...]
/external/chromium_org/chrome/browser/extensions/api/tabs/
H A Dtabs_api.cc1332 int iteration,
1357 *new_index += iteration;
1330 MoveTab(int tab_id, int* new_index, int iteration, base::ListValue* tab_values, int* window_id) argument
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab_drag_controller_interactive_uitest.cc2120 int iteration) {
2125 if (!iteration) {
2134 iteration - 1)));
2117 DetachToDockedWindowNextStep( DetachToBrowserTabDragControllerTest* test, const gfx::Point& target_point, int iteration) argument
/external/chromium_org/testing/gtest/src/
H A Dgtest-internal-inl.h797 // Gets the random seed used at the start of the current test iteration.
1124 // test iteration, not for the entire test program.
1131 void OnTestIterationStart(const UnitTest& /* unit_test */, int iteration) { argument
1132 SendLn("event=TestIterationStart&iteration=" +
1133 StreamableToString(iteration));
1136 void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration */) {
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtsmthred.cpp890 int32_t iteration; local
905 for(iteration = 0;!getError() && iteration<kFormatThreadIterations;iteration++)
908 int32_t whichLine = (iteration + fOffset)%kNumberFormatTestDataLength;
922 whichLine = (iteration + fOffset)%kPercentFormatTestDataLength;
943 switch((iteration+fOffset) % kNumberOfMessageTests)
/external/flac/libFLAC/
H A Dstream_decoder.c3202 unsigned iteration = 0; local
3225 for( ; ; iteration++) {
3226 if (iteration == 0 || this_frame_sample > target_sample || target_sample - this_frame_sample > LINEAR_SEARCH_WITHIN_SAMPLES) {
3227 if (iteration >= BINARY_SEARCH_AFTER_ITERATION) {

Completed in 456 milliseconds

12