Home
last modified time | relevance | path

Searched full:steps (Results 1 – 25 of 2367) sorted by relevance

12345678910>>...95

/third_party/boost/boost/numeric/odeint/stepper/detail/
Dadams_bashforth_call_algebra.hpp36 …Algebra &algebra , const StateIn &in , StateOut &out , const StepStorage &steps , const Coefficien… in operator ()()
39 …algebra.for_each3( out , in , steps[0].m_v , typename Operations::template scale_sum2< value_type … in operator ()()
48 …Algebra &algebra , const StateIn &in , StateOut &out , const StepStorage &steps , const Coefficien… in operator ()()
51 algebra.for_each4( out , in , steps[0].m_v , steps[1].m_v , in operator ()()
61 …Algebra &algebra , const StateIn &in , StateOut &out , const StepStorage &steps , const Coefficien… in operator ()()
64 algebra.for_each5( out , in , steps[0].m_v , steps[1].m_v , steps[2].m_v , in operator ()()
74 …Algebra &algebra , const StateIn &in , StateOut &out , const StepStorage &steps , const Coefficien… in operator ()()
77 algebra.for_each6( out , in , steps[0].m_v , steps[1].m_v , steps[2].m_v , steps[3].m_v , in operator ()()
88 …Algebra &algebra , const StateIn &in , StateOut &out , const StepStorage &steps , const Coefficien… in operator ()()
91 …algebra.for_each7( out , in , steps[0].m_v , steps[1].m_v , steps[2].m_v , steps[3].m_v , steps[4]… in operator ()()
[all …]
Dadams_moulton_call_algebra.hpp35 …StateIn &in , StateOut &out , const DerivIn &dxdt , const StepStorage& /* steps */ , const Coeffic… in operator ()()
47 …st StateIn &in , StateOut &out , const DerivIn &dxdt , const StepStorage &steps , const Coefficien… in operator ()()
50 algebra.for_each4( out , in , dxdt , steps[0].m_v , in operator ()()
60 …st StateIn &in , StateOut &out , const DerivIn &dxdt , const StepStorage &steps , const Coefficien… in operator ()()
63 algebra.for_each5( out , in , dxdt , steps[0].m_v , steps[1].m_v , in operator ()()
73 …st StateIn &in , StateOut &out , const DerivIn &dxdt , const StepStorage &steps , const Coefficien… in operator ()()
76 algebra.for_each6( out , in , dxdt , steps[0].m_v , steps[1].m_v , steps[2].m_v , in operator ()()
87 …st StateIn &in , StateOut &out , const DerivIn &dxdt , const StepStorage &steps , const Coefficien… in operator ()()
90 … algebra.for_each7( out , in , dxdt , steps[0].m_v , steps[1].m_v , steps[2].m_v , steps[3].m_v , in operator ()()
101 …st StateIn &in , StateOut &out , const DerivIn &dxdt , const StepStorage &steps , const Coefficien… in operator ()()
[all …]
/third_party/python/.azure-pipelines/
Dci.yml17 steps:
29 steps:
30 - template: ./docs-steps.yml
49 steps:
50 - template: ./macos-steps.yml
66 steps:
67 - template: ./posix-steps.yml
94 steps:
95 - template: ./posix-steps.yml
123 steps:
[all …]
Dpr.yml17 steps:
29 steps:
30 - template: ./docs-steps.yml
47 steps:
48 - template: ./macos-steps.yml
66 steps:
67 - template: ./posix-steps.yml
94 steps:
95 - template: ./posix-steps.yml
123 steps:
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dstepper.dart19 // * mobile horizontal mode with adding/removing steps
49 /// A vertical layout of the steps with their content in-between the titles.
52 /// A horizontal layout of the steps with their content below the titles.
107 /// and whether steps are interactive.
115 /// steps. Steppers are particularly useful in the case of forms where one step
116 /// requires the completion of another one, or where multiple steps need to be
128 /// Creates a stepper from a list of steps.
130 /// This widget is not meant to be rebuilt with a different list of steps
134 /// The [steps], [type], and [currentStep] arguments must not be null.
137 @required this.steps,
[all …]
/third_party/boost/boost/numeric/odeint/stepper/
Dadams_bashforth.hpp72 size_t Steps ,
80 class InitializingStepper = extrapolation_stepper< order_helper<Steps>::value,
88 BOOST_STATIC_ASSERT(( Steps > 0 ));
89 BOOST_STATIC_ASSERT(( Steps < 9 ));
109 …typedef adams_bashforth< Steps , State , Value , Deriv , Time , Algebra , Operations , Resizer , I…
111 static const size_t steps = Steps; member in boost::numeric::odeint::adams_bashforth
116 static const order_type order_value = steps;
118 typedef detail::rotating_buffer< wrapped_deriv_type , steps > step_storage_type;
200 for( size_t i=0 ; i+1<steps ; ++i ) in initialize()
208 m_steps_initialized = steps; in initialize()
[all …]
Dadams_bashforth_moulton.hpp45 size_t Steps ,
59 BOOST_STATIC_ASSERT(( Steps > 0 ));
60 BOOST_STATIC_ASSERT(( Steps < 9 ));
77 static const size_t steps = Steps; member in boost::numeric::odeint::adams_bashforth_moulton
79 …typedef adams_bashforth< steps , state_type , value_type , deriv_type , time_type , algebra_type ,…
80 …typedef adams_moulton< steps , state_type , value_type , deriv_type , time_type , algebra_type , o…
81 …typedef adams_bashforth_moulton< steps , state_type , value_type , deriv_type , time_type , algebr…
84 static const order_type order_value = steps;
214 * parameter Steps and it then uses the result from the previous Steps steps.
217 * Currently, a maximum of Steps=8 is supported.
[all …]
Dmodified_midpoint.hpp74 modified_midpoint( unsigned short steps = 2 , const algebra_type &algebra = algebra_type() ) in modified_midpoint() argument
75 : stepper_base_type( algebra ) , m_steps( steps ) in modified_midpoint()
120 void set_steps( unsigned short steps ) in set_steps() argument
121 { m_steps = steps; } in set_steps()
124 unsigned short steps( void ) const in steps() function in boost::numeric::odeint::modified_midpoint
189 …modified_midpoint_dense_out( unsigned short steps = 2 , const algebra_type &algebra = algebra_type… in modified_midpoint_dense_out() argument
190 : m_algebra( algebra ) , m_steps( steps ) in modified_midpoint_dense_out()
251 void set_steps( unsigned short steps ) in set_steps() argument
252 { m_steps = steps; } in set_steps()
255 unsigned short steps( void ) const in steps() function in boost::numeric::odeint::modified_midpoint_dense_out
[all …]
/third_party/python/Lib/
Dpipes.py8 conversion involves several steps (e.g. piping it through compress or
9 uuencode). Some of the conversion steps may require that their input
15 more conversion steps together. It will take care of creating and
22 different conversion steps and store them in a dictionary, for
92 return '<Template instance, steps=%r>' % (self.steps,)
96 self.steps = []
102 t.steps = self.steps[:]
118 if self.steps and self.steps[-1][1] == SINK:
124 self.steps.append((cmd, kind))
134 if self.steps and self.steps[0][1] == SOURCE:
[all …]
/third_party/boost/libs/numeric/odeint/doc/
Ddetails_integrate_functions.qbk19 a _max_step_checker_ to throw an exception if too many steps are taken between observer calls (i.e.…
37 These integrate the ODE given by `system` with subsequent steps from `stepper`.
41 If provided, the `max_step_checker` counts the number of steps between observer calls and throws a
43 `integrate_const` returns the number of steps performed during the integration.
44 Note that if you are using a simple __stepper or __error_stepper and want to make exactly `n` steps
55 [heading Integrate a given number of steps]
59 steps. The integration is then performed until the time `t0+n*dt`.
67 Integrates the ODE given by `system` with subsequent steps from `stepper` starting at ['x[sub 0]] a…
70 Again, providing a `max_step_checker` will throw a `no_progress_error` if too many steps are perfor…
85 Integrates the ODE given by `system` with subsequent steps from `stepper`.
[all …]
/third_party/flutter/skia/src/core/
DSkConvertPixels.cpp19 const SkColorSpaceXformSteps& steps) { in rect_memcpy() argument
25 && steps.flags.mask() != 0b00000) { in rect_memcpy()
36 const SkColorSpaceXformSteps& steps) { in swizzle_or_premul() argument
42 steps.flags.linearize || in swizzle_or_premul()
43 steps.flags.gamut_transform || in swizzle_or_premul()
44 steps.flags.unpremul || in swizzle_or_premul()
45 steps.flags.encode) { in swizzle_or_premul()
53 if (steps.flags.premul) { in swizzle_or_premul()
166 const SkColorSpaceXformSteps& steps) { in convert_with_pipeline() argument
173 steps.apply(&pipeline, srcInfo.colorType()); in convert_with_pipeline()
[all …]
/third_party/boost/libs/numeric/odeint/test/
Dadaptive_adams_coefficients.cpp28 const static size_t steps = step_type::value; in BOOST_AUTO_TEST_CASE_TEMPLATE() local
33 typedef detail::adaptive_adams_coefficients<steps, deriv_type, time_type> aac_type; in BOOST_AUTO_TEST_CASE_TEMPLATE()
42 for(size_t i=0; i<steps; ++i) in BOOST_AUTO_TEST_CASE_TEMPLATE()
50 if(coeff.m_eo < steps) in BOOST_AUTO_TEST_CASE_TEMPLATE()
65 for(size_t i=0; i<steps; ++i) in BOOST_AUTO_TEST_CASE_TEMPLATE()
71 else if (i == steps-1 && steps%2 == 1) in BOOST_AUTO_TEST_CASE_TEMPLATE()
73 else if (i == steps-1 && steps%2 == 0) in BOOST_AUTO_TEST_CASE_TEMPLATE()
/third_party/ffmpeg/libavfilter/
Dvf_gblur.c42 …{ "steps", "set number of steps", OFFSET(steps), AV_OPT_TYPE_INT, {.i64=1}, 1, 6, FLAG…
55 static void horiz_slice_c(float *buffer, int width, int height, int steps, in horiz_slice_c() argument
61 for (step = 0; step < steps; step++) { in horiz_slice_c()
86 const int steps = s->steps; in filter_horizontally() local
91 steps, nu, boundaryscale); in filter_horizontally()
97 int column_begin, int column_end, int steps, in do_vertical_columns() argument
104 for (step = 0; step < steps; step++) { in do_vertical_columns()
139 const int steps = s->steps; in filter_vertically() local
147 steps, nu, boundaryscale, 8); in filter_vertically()
151 steps, nu, boundaryscale, 1); in filter_vertically()
[all …]
/third_party/python/.azure-pipelines/windows-release/
Dstage-build.yml11 steps:
86 steps:
87 - template: ./build-steps.yml
108 steps:
109 - template: ./build-steps.yml
134 steps:
135 - template: ./build-steps.yml
149 steps:
/third_party/libxml2/
Dpattern.c102 int nbStep; /* number of steps in the automata */
103 int maxStep; /* allocated number of steps */
104 xmlStreamStepPtr steps; /* the array of steps */ member
172 xmlStepOpPtr steps; /* ops for computation */ member
214 cur->steps = (xmlStepOpPtr) xmlMalloc(cur->maxStep * sizeof(xmlStepOp)); in xmlNewPattern()
215 if (cur->steps == NULL) { in xmlNewPattern()
246 if (comp->steps != NULL) { in xmlFreePatternInternal()
249 op = &comp->steps[i]; in xmlFreePatternInternal()
256 xmlFree(comp->steps); in xmlFreePatternInternal()
356 temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 * in xmlPatternAdd()
[all …]
/third_party/python/.github/workflows/
Dbuild.yml18 run_tests: ${{ steps.check.outputs.run_tests }}
19 steps:
35 steps:
49 steps:
63 steps:
81 steps:
92 if: steps.cache-openssl.outputs.cache-hit != 'true'
93 …run: python3 Tools/ssl/multissltests.py --steps=library --base-directory $PWD/multissl --openssl $…
/third_party/flutter/skia/third_party/externals/angle2/src/tests/perf_tests/
Dglmark2Benchmark.cpp69 {"conditionals:fragment-steps=0:vertex-steps=0", "conditionals"},
70 {"conditionals:fragment-steps=5:vertex-steps=0", "conditionals_fragment"},
71 {"conditionals:fragment-steps=0:vertex-steps=5", "conditionals_vertex"},
72 {"function:fragment-complexity=low:fragment-steps=5", "function"},
73 {"function:fragment-complexity=medium:fragment-steps=5", "function_complex"},
74 {"loop:fragment-loop=false:fragment-steps=5:vertex-steps=5", "loop_no_fsloop"},
75 {"loop:fragment-steps=5:fragment-uniform=false:vertex-steps=5", "loop_no_uniform"},
76 {"loop:fragment-steps=5:fragment-uniform=true:vertex-steps=5", "loop"},
/third_party/node/deps/npm/node_modules/slide/lib/
Dasync-map.js15 var steps = Array.prototype.slice.call(arguments)
16 , list = steps.shift() || []
17 , cb_ = steps.pop()
22 var n = steps.length
42 steps.forEach(function (fn) { fn(ar, cb) })
52 steps.forEach(function (fn) { fn(ar, cb) })
/third_party/libunwind/tests/
DLtest-mem-validate.c52 (steps > 5) before touching the forbidden region in the stack, in do_backtrace()
62 int steps = 0; in do_backtrace() local
79 steps ++; in do_backtrace()
83 if (steps < 5) in do_backtrace()
85 printf("not enough steps: %d, need 5\n", steps); in do_backtrace()
88 printf("success, steps: %d\n", steps); in do_backtrace()
DLtest-init-local-signal.c13 int steps = 0; in stepper() local
21 steps++; in stepper()
23 return steps; in stepper()
44 printf("unw_getcontext steps was %i, ucontext steps was %i, should be %i\n", in handler()
/third_party/flutter/flutter/packages/flutter/test/material/
Dstepper_test.dart20 steps: const <Step>[
50 steps: const <Step>[
81 steps: const <Step>[
118 steps: const <Step>[
143 steps: const <Step>[
167 steps: const <Step>[
201 steps: const <Step>[
239 steps: const <Step>[
270 steps: const <Step>[
307 steps: const <Step>[
[all …]
/third_party/gstreamer/gstplugins_bad/tests/check/libs/
Dplayer.c762 gint steps = GPOINTER_TO_INT (new_state->test_data); in test_play_error_invalid_external_suburi_cb() local
764 if (new_state->state == GST_PLAYER_STATE_PLAYING && !steps) { in test_play_error_invalid_external_suburi_cb()
770 new_state->test_data = GINT_TO_POINTER (steps + 1); in test_play_error_invalid_external_suburi_cb()
775 } else if (steps && change == STATE_CHANGE_WARNING) { in test_play_error_invalid_external_suburi_cb()
776 new_state->test_data = GINT_TO_POINTER (steps + 1); in test_play_error_invalid_external_suburi_cb()
789 gint steps = GPOINTER_TO_INT (new_state->test_data) & 0xf; in test_play_stream_disable_cb() local
792 if (new_state->state == GST_PLAYER_STATE_PLAYING && !steps) { in test_play_stream_disable_cb()
793 new_state->test_data = GINT_TO_POINTER (0x10 + steps + 1); in test_play_stream_disable_cb()
801 new_state->test_data = GINT_TO_POINTER (0x20 + steps + 1); in test_play_stream_disable_cb()
809 new_state->test_data = GINT_TO_POINTER (0x30 + steps + 1); in test_play_stream_disable_cb()
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/.circleci/
Dconfig.yml8 steps:
18 steps:
28 steps:
38 steps:
51 steps:
62 steps:
76 # steps:
84 steps:
100 steps:
116 steps:
[all …]
/third_party/harfbuzz/.circleci/
Dconfig.yml16 steps:
29 steps:
42 steps:
57 steps:
67 steps:
78 steps:
89 steps:
104 steps:
121 steps:
134 steps:
/third_party/boost/libs/numeric/odeint/test/numeric/
Dvelocity_verlet.cpp54 const int steps = 10; in BOOST_AUTO_TEST_CASE() local
65 for ( int step = 0; step < steps; ++step ) in BOOST_AUTO_TEST_CASE()
70 const double f = steps * std::abs( sin( steps * dt ) - x[0] ) / in BOOST_AUTO_TEST_CASE()
81 for ( int step = 0; step < steps; ++step ) in BOOST_AUTO_TEST_CASE()
86 BOOST_CHECK_LT( std::abs( sin( steps * dt ) - x[0] ), in BOOST_AUTO_TEST_CASE()

12345678910>>...95