/third_party/boost/libs/numeric/odeint/examples/ |
D | stepper_details.cpp | 90 rk.do_step( sys1 , inout , t , dt ); // In-place transformation of inout in main() 91 rk.do_step( sys2 , inout , t , dt ); // call with different system: Ok in main() 92 rk.do_step( sys1 , in , t , out , dt ); // Out-of-place transformation in main() 93 rk.do_step( sys1 , inout , dxdtin , t , dt ); // In-place tranformation of inout in main() 94 rk.do_step( sys1 , in , dxdtin , t , out , dt ); // Out-of-place transformation in main() 106 rk.do_step( sys1 , in , t , out , dt ); in main() 107 rk.do_step( sys2 , in , t , out , dt ); // DONT do this, sys1 is assumed in main() 109 rk.do_step( sys2 , in2 , t , out , dt ); in main() 110 rk.do_step( sys2 , in3 , t , out , dt ); // DONT do this, in2 is assumed in main() 112 rk.do_step( sys1 , inout , dxdtinout , t , dt ); in main() [all …]
|
D | abm_precision.cpp | 58 stepper.do_step( osc() , x1 , t , dt ); in main() 64 stepper.do_step( osc() , x1 , t , dt ); in main() 79 stepper.do_step( osc() , x1 , t , dt ); in main()
|
/third_party/jerryscript/tests/debugger/ |
D | do_step.expected | 2 Stopped at tests/debugger/do_step.js:32 4 Stopped at tests/debugger/do_step.js:22 (in f1() at line:15, col:1) 6 Stopped at tests/debugger/do_step.js:19 (in g() at line:17, col:3) 8 Frame 0: tests/debugger/do_step.js:19 (in g() at line:17, col:3) 9 Frame 1: tests/debugger/do_step.js:22 (in f1() at line:15, col:1) 10 Frame 2: tests/debugger/do_step.js:32 12 Stopped at tests/debugger/do_step.js:23 (in f1() at line:15, col:1) 14 Frame 0: tests/debugger/do_step.js:23 (in f1() at line:15, col:1) 15 Frame 1: tests/debugger/do_step.js:32 17 Stopped at tests/debugger/do_step.js:33 [all …]
|
/third_party/boost/libs/numeric/odeint/test/ |
D | adams_bashforth.cpp | 74 m_stepper.do_step( system , in , dxdt , t , out , dt ); in do_step_dxdt_impl() 81 m_stepper.do_step( system , x , dxdt , t , dt ); in do_step_dxdt_impl() 163 stepper.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE_TEMPLATE() 180 s1.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 181 s2.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 182 s3.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 183 s4.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 184 s5.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 185 s6.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 199 adams.do_step( lorenz() , x , 0.0 , x , 0.1 ); in BOOST_AUTO_TEST_CASE() [all …]
|
D | velocity_verlet.cpp | 128 stepper.do_step( ode() , std::make_pair( boost::ref( q ) , boost::ref( p ) ) , 0.0 , 0.01 ); in BOOST_FIXTURE_TEST_CASE() 137 stepper.do_step( ode() , xxx , 0.0 , 0.01 ); in BOOST_FIXTURE_TEST_CASE() 146 stepper.do_step( ode() , std::make_pair( boost::ref( q ) , boost::ref( p ) ) , 0.0 , 0.01 ); in BOOST_FIXTURE_TEST_CASE() 156 stepper.do_step( ode() , x , 0.0 , 0.01 ); in BOOST_FIXTURE_TEST_CASE() 166 stepper.do_step( ode() , x , 0.0 , 0.01 ); in BOOST_FIXTURE_TEST_CASE() 167 stepper.do_step( ode() , x , 0.0 , 0.01 ); in BOOST_FIXTURE_TEST_CASE() 178 stepper.do_step( ode() , x , 0.0 , 0.01 ); in BOOST_FIXTURE_TEST_CASE() 179 stepper.do_step( ode() , x , 0.0 , 0.01 ); in BOOST_FIXTURE_TEST_CASE() 190 stepper.do_step( ode() , x , 0.0 , 0.01 ); in BOOST_FIXTURE_TEST_CASE() 191 stepper.do_step( ode() , x , 0.0 , 0.01 ); in BOOST_FIXTURE_TEST_CASE() [all …]
|
D | stepper_with_units.cpp | 92 stepper.do_step( oscillator , x , t , dt ); in check_stepper() 95 stepper.do_step( oscillator , x , t , x , dt ); in check_stepper() 100 stepper.do_step( oscillator , x , dxdt , t , dt ); in check_stepper() 104 stepper.do_step( oscillator , x , dxdt , t , x , dt ); in check_stepper() 124 stepper.do_step( oscillator , x , t , dt ); in check_fsal_stepper() 127 stepper.do_step( oscillator , x , t , x , dt ); in check_fsal_stepper() 132 stepper.do_step( oscillator , x , dxdt , t , dt ); in check_fsal_stepper() 135 stepper.do_step( oscillator , x , dxdt , t , x , dxdt , dt ); in check_fsal_stepper() 155 stepper.do_step( oscillator , x , t , dt , xerr ); in check_error_stepper() 158 stepper.do_step( oscillator , x , t , x , dt , xerr ); in check_error_stepper() [all …]
|
D | symplectic_steppers.cpp | 195 stepper.do_step( constant_mom_func() , x , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE_TEMPLATE() 196 stepper.do_step( constant_mom_func() , x , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE_TEMPLATE() 197 stepper.do_step( constant_mom_func() , x , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE_TEMPLATE() 237 stepper.do_step( constant_mom_func() , x , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE_TEMPLATE() 260 s.do_step( constant_mom_func() , x1 , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE_TEMPLATE() 262 s.do_step( std::make_pair( default_coor_func() , constant_mom_func() ) , x2 , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE_TEMPLATE() 266 s.do_step( std::make_pair( boost::ref( cf ) , boost::ref( mf ) ) , x3 , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE_TEMPLATE() 269 s.do_step( boost::ref( pf ) , x4 , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE_TEMPLATE() 271 …s.do_step( constant_mom_func() , std::make_pair( boost::ref( x5_coor ) , boost::ref( x5_mom ) ) , … in BOOST_AUTO_TEST_CASE_TEMPLATE() 295 s.do_step( constant_mom_func() , in BOOST_AUTO_TEST_CASE_TEMPLATE() [all …]
|
D | adams_bashforth_moulton.cpp | 69 stepper.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE_TEMPLATE() 101 s1.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 102 s2.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 103 s3.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 104 s4.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 105 s5.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE() 106 s6.do_step( lorenz() , x , t , dt ); in BOOST_AUTO_TEST_CASE()
|
D | stepper_with_ranges.cpp | 180 euler.do_step( system1() , std::make_pair( f.in.begin() + 1 , f.in.begin() + 4 ) , 0.1 , 0.1 ); in BOOST_AUTO_TEST_CASE() 190 rk54.do_step( system2() , std::make_pair( f.in.begin() + 1 , f.in.begin() + 4 ) , 0.1 , 0.1 ); in BOOST_AUTO_TEST_CASE() 198 …rk54.do_step( system2() , std::make_pair( f.in.begin() + 1 , f.in.begin() + 4 ) , 0.1 , 0.1 , f.er… in BOOST_AUTO_TEST_CASE() 207 dopri5.do_step( system2() , std::make_pair( f.in.begin() + 1 , f.in.begin() + 4 ) , 0.1 , 0.1 ); in BOOST_AUTO_TEST_CASE() 216 …dopri5.do_step( system2() , std::make_pair( f.in.begin() + 1 , f.in.begin() + 4 ) , 0.1 , 0.1 , f.… in BOOST_AUTO_TEST_CASE() 244 euler.do_step( ham_sys() , in BOOST_AUTO_TEST_CASE() 256 euler.do_step( std::make_pair( ham_sys() , ham_sys() ) , in BOOST_AUTO_TEST_CASE() 271 stepper.do_step( system1() ); in BOOST_AUTO_TEST_CASE() 285 stepper.do_step( system2() ); in BOOST_AUTO_TEST_CASE()
|
D | rosenbrock4.cpp | 82 stepper.do_step( std::make_pair( sys() , jacobi() ) , x , 0.0 , 0.1 , xerr ); in BOOST_AUTO_TEST_CASE() 84 stepper.do_step( std::make_pair( sys() , jacobi() ) , x , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE() 126 std::pair< value_type , value_type > tr = stepper.do_step( std::make_pair( sys() , jacobi() ) ); in BOOST_AUTO_TEST_CASE() 152 std::pair< value_type , value_type > tr = stepper.do_step( std::make_pair( sys() , jacobi() ) ); in BOOST_AUTO_TEST_CASE() 158 stepper.do_step( std::make_pair( sys() , jacobi() ) ); in BOOST_AUTO_TEST_CASE()
|
D | bulirsch_stoer.cpp | 106 bs_do.do_step( sin_system() ); in BOOST_AUTO_TEST_CASE() 120 bs_do.do_step( sin_system() ); in BOOST_AUTO_TEST_CASE() 126 bs_do.do_step( sin_system() ); in BOOST_AUTO_TEST_CASE() 131 bs_do.do_step( sin_system() ); in BOOST_AUTO_TEST_CASE()
|
D | generic_stepper.cpp | 88 rk_generic.do_step( sys , x , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE() 90 rk4_generic.do_step( sys , y , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE() 92 rk4.do_step( sys , z , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/boost/numeric/odeint/stepper/ |
D | adams_bashforth_moulton.hpp | 100 void do_step( System system , StateInOut &x , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::adams_bashforth_moulton 109 void do_step( System system , const StateInOut &x , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::adams_bashforth_moulton 115 …void do_step( System system , const StateIn &in , time_type t , const StateOut &out , time_type dt… in do_step() function in boost::numeric::odeint::adams_bashforth_moulton 124 void do_step( System system , const StateIn &in , time_type t , StateOut &out , time_type dt ) in do_step() function in boost::numeric::odeint::adams_bashforth_moulton 168 m_adams_bashforth.do_step( system , x , t , m_x.m_v , dt ); in do_step_impl1() 169 …m_adams_moulton.do_step( system , x , m_x.m_v , t+dt , x , dt , m_adams_bashforth.step_storage() ); in do_step_impl1() 173 m_adams_bashforth.do_step( system , x , t , dt ); in do_step_impl1() 183 m_adams_bashforth.do_step( system , in , t , m_x.m_v , dt ); in do_step_impl2() 184 …m_adams_moulton.do_step( system , in , m_x.m_v , t+dt , out , dt , m_adams_bashforth.step_storage(… in do_step_impl2() 188 m_adams_bashforth.do_step( system , in , t , out , dt ); in do_step_impl2()
|
D | adaptive_adams_bashforth_moulton.hpp | 87 void do_step(System system, state_type &inOut, time_type t, time_type dt ) in do_step() function in boost::numeric::odeint::adaptive_adams_bashforth_moulton 91 do_step(system, inOut, t, m_xnew.m_v, dt, m_xerr.m_v); in do_step() 96 void do_step(System system, const state_type &in, time_type t, state_type &out, time_type dt ) in do_step() function in boost::numeric::odeint::adaptive_adams_bashforth_moulton 98 do_step(system, in, t, out, dt, m_xerr.m_v); in do_step() 102 void do_step(System system, state_type &inOut, time_type t, time_type dt, state_type &xerr) in do_step() function in boost::numeric::odeint::adaptive_adams_bashforth_moulton 106 do_step(system, inOut, t, m_xnew.m_v, dt, xerr); in do_step() 111 …void do_step(System system, const state_type &in, time_type t, state_type &out, time_type dt , sta… in do_step() function in boost::numeric::odeint::adaptive_adams_bashforth_moulton 116 m_coeff.do_step(m_dxdt.m_v); in do_step() 141 m_coeff.do_step(m_dxdt.m_v); in initialize() 161 this->do_step(system, inOut, t, dt); in initialize() [all …]
|
D | adams_moulton.hpp | 117 …void do_step( System system , StateInOut &x , StateIn const & pred , time_type t , time_type dt , … in do_step() function in boost::numeric::odeint::adams_moulton 119 do_step( system , x , pred , t , x , dt , buf ); in do_step() 123 …void do_step( System system , const StateInOut &x , StateIn const & pred , time_type t , time_type… in do_step() function in boost::numeric::odeint::adams_moulton 125 do_step( system , x , pred , t , x , dt , buf ); in do_step() 136 …void do_step( System system , const StateIn &in , const PredIn &pred , time_type t , StateOut &out… in do_step() function in boost::numeric::odeint::adams_moulton 142 …void do_step( System system , const StateIn &in , const PredIn &pred , time_type t , const StateOu… in do_step() function in boost::numeric::odeint::adams_moulton
|
D | adams_bashforth.hpp | 138 void do_step( System system , StateInOut &x , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::adams_bashforth 140 do_step( system , x , t , x , dt ); in do_step() 147 void do_step( System system , const StateInOut &x , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::adams_bashforth 149 do_step( system , x , t , x , dt ); in do_step() 161 void do_step( System system , const StateIn &in , time_type t , StateOut &out , time_type dt ) in do_step() function in boost::numeric::odeint::adams_bashforth 170 …void do_step( System system , const StateIn &in , time_type t , const StateOut &out , time_type dt… in do_step() function in boost::numeric::odeint::adams_bashforth
|
/third_party/boost/boost/numeric/odeint/stepper/base/ |
D | explicit_error_stepper_base.hpp | 123 void do_step( System system , StateInOut &x , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_base 132 void do_step( System system , const StateInOut &x , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_base 148 do_step( System system , StateInOut &x , const DerivIn &dxdt , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_base 179 do_step( System system , const StateIn &in , time_type t , StateOut &out , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_base 196 …do_step( System system , const StateIn &in , const DerivIn &dxdt , time_type t , StateOut &out , t… in do_step() function in boost::numeric::odeint::explicit_error_stepper_base 222 void do_step( System system , StateInOut &x , time_type t , time_type dt , Err &xerr ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_base 231 void do_step( System system , const StateInOut &x , time_type t , time_type dt , Err &xerr ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_base 246 …do_step( System system , StateInOut &x , const DerivIn &dxdt , time_type t , time_type dt , Err &x… in do_step() function in boost::numeric::odeint::explicit_error_stepper_base 258 …void do_step( System system , const StateIn &in , time_type t , StateOut &out , time_type dt , Err… in do_step() function in boost::numeric::odeint::explicit_error_stepper_base 273 …void do_step( System system , const StateIn &in , const DerivIn &dxdt , time_type t , StateOut &ou… in do_step() function in boost::numeric::odeint::explicit_error_stepper_base
|
D | explicit_error_stepper_fsal_base.hpp | 122 void do_step( System system , StateInOut &x , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_fsal_base 131 void do_step( System system , const StateInOut &x , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_fsal_base 146 do_step( System system , StateInOut &x , DerivInOut &dxdt , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_fsal_base 178 do_step( System system , const StateIn &in , time_type t , StateOut &out , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_fsal_base 195 void do_step( System system, const StateIn &in, const DerivIn &dxdt_in, in do_step() function in boost::numeric::odeint::explicit_error_stepper_fsal_base 213 void do_step( System system , StateInOut &x , time_type t , time_type dt , Err &xerr ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_fsal_base 222 void do_step( System system , const StateInOut &x , time_type t , time_type dt , Err &xerr ) in do_step() function in boost::numeric::odeint::explicit_error_stepper_fsal_base 237 …do_step( System system , StateInOut &x , DerivInOut &dxdt , time_type t , time_type dt , Err &xerr… in do_step() function in boost::numeric::odeint::explicit_error_stepper_fsal_base 252 …void do_step( System system , const StateIn &in , time_type t , StateOut &out , time_type dt , Err… in do_step() function in boost::numeric::odeint::explicit_error_stepper_fsal_base 268 void do_step( System system , const StateIn &in , const DerivIn &dxdt_in , time_type t , in do_step() function in boost::numeric::odeint::explicit_error_stepper_fsal_base
|
D | explicit_stepper_base.hpp | 112 void do_step( System system , StateInOut &x , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_stepper_base 121 void do_step( System system , const StateInOut &x , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_stepper_base 135 do_step( System system , StateInOut &x , const DerivIn &dxdt , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_stepper_base 162 void do_step( System system , const StateIn &in , time_type t , StateOut &out , time_type dt ) in do_step() function in boost::numeric::odeint::explicit_stepper_base 177 …void do_step( System system , const StateIn &in , const DerivIn &dxdt , time_type t , StateOut &ou… in do_step() function in boost::numeric::odeint::explicit_stepper_base
|
D | symplectic_rkn_stepper_base.hpp | 108 void do_step( System system , const StateInOut &state , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::symplectic_nystroem_stepper_base 119 void do_step( System system , StateInOut &state , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::symplectic_nystroem_stepper_base 136 void do_step( System system , CoorInOut &q , MomentumInOut &p , time_type t , time_type dt ) in do_step() function in boost::numeric::odeint::symplectic_nystroem_stepper_base 138 do_step( system , std::make_pair( detail::ref( q ) , detail::ref( p ) ) , t , dt ); in do_step() 146 …void do_step( System system , const CoorInOut &q , const MomentumInOut &p , time_type t , time_typ… in do_step() function in boost::numeric::odeint::symplectic_nystroem_stepper_base 148 do_step( system , std::make_pair( detail::ref( q ) , detail::ref( p ) ) , t , dt ); in do_step() 161 void do_step( System system , const StateIn &in , time_type t , StateOut &out , time_type dt ) in do_step() function in boost::numeric::odeint::symplectic_nystroem_stepper_base
|
/third_party/boost/libs/numeric/odeint/test_external/eigen/ |
D | runge_kutta4.cpp | 51 rk4.do_step( sys() , x , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE() 62 rk4.do_step( sys() , x , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE() 77 rk4.do_step( sys() , x , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE() 88 rk4.do_step( sys() , x , 0.0 , 0.1 ); in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/libs/numeric/odeint/test/numeric/ |
D | runge_kutta.cpp | 84 stepper.do_step( osc() , x0 , t , x1 , dt ); in operator ()() 95 stepper.do_step( osc() , x0 , t , x1 , dt ); in operator ()() 118 stepper.do_step( osc() , x0 , t , x1 , dt , x_err ); in operator ()() 129 stepper.do_step( osc() , x0 , t , x1 , dt , x_err ); in operator ()()
|
/third_party/boost/boost/numeric/odeint/integrate/ |
D | check_adapter.hpp | 63 void do_step(System system, StateInOut &state, const time_type t, const time_type dt) in do_step() function in boost::numeric::odeint::checked_stepper 66 m_stepper.do_step(system, state, t, dt); in do_step() 150 std::pair< time_type , time_type > do_step( System system ) in do_step() function in boost::numeric::odeint::checked_stepper 153 return m_stepper.do_step(system); in do_step()
|
/third_party/gstreamer/gstplugins_base/tests/examples/seek/ |
D | stepping2.c | 33 do_step (GstElement * bin) in do_step() function 57 do_step (bin); in handle_sync_message() 126 do_step (bin); in main()
|
/third_party/boost/boost/numeric/odeint/integrate/detail/ |
D | integrate_n_steps.hpp | 57 st.do_step( system , start_state , time , dt ); in integrate_n_steps() 130 st.do_step( system ); in integrate_n_steps() 135 st.do_step( system ); in integrate_n_steps() 146 st.do_step( system ); in integrate_n_steps()
|