Home
last modified time | relevance | path

Searched defs:state_type (Results 1 – 25 of 194) sorted by relevance

12345678

/third_party/boost/libs/numeric/odeint/test_external/eigen/
Drunge_kutta4.cpp47 typedef Eigen::Matrix< double , 1 , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
58 typedef Eigen::Matrix< double , Eigen::Dynamic , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
73 typedef Eigen::Array< double , 1 , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
84 typedef Eigen::Array< double , Eigen::Dynamic , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
Drunge_kutta_dopri5.cpp73 typedef Eigen::Matrix< double , 1 , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
95 typedef Eigen::Matrix< double , Eigen::Dynamic , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
111 typedef Eigen::Array< double , 1 , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
122 typedef Eigen::Array< double , Eigen::Dynamic , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
Dintegrate.cpp40 typedef Eigen::Matrix< double , 1 , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
50 typedef Eigen::Matrix< double , 3 , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
/third_party/boost/libs/numeric/odeint/test/
Dis_resizeable.cpp72 typedef boost::fusion::vector< std::vector< double > , std::vector< double > > state_type; in BOOST_AUTO_TEST_CASE() typedef
78 typedef boost::fusion::vector< double , double > state_type; in BOOST_AUTO_TEST_CASE() typedef
84 typedef boost::fusion::vector< double , std::vector< double > > state_type; in BOOST_AUTO_TEST_CASE() typedef
90 typedef boost::fusion::vector< std::vector< double > , double > state_type; in BOOST_AUTO_TEST_CASE() typedef
103 typedef boost::fusion::vector< length_type , velocity_type > state_type; in BOOST_AUTO_TEST_CASE() typedef
Dresize.cpp54 typedef boost::fusion::vector< std::vector< double > , std::vector< double > > state_type; in BOOST_AUTO_TEST_CASE() typedef
67 typedef boost::fusion::vector< std::vector< double > , double > state_type; in BOOST_AUTO_TEST_CASE() typedef
77 typedef boost::fusion::vector< double , std::vector< double > , double > state_type; in BOOST_AUTO_TEST_CASE() typedef
94 typedef boost::fusion::vector< length_type , velocity_type > state_type; in BOOST_AUTO_TEST_CASE() typedef
Drosenbrock4.cpp41 typedef boost::numeric::ublas::vector< value_type > state_type; typedef
74 typedef stepper_type::state_type state_type; in BOOST_AUTO_TEST_CASE() typedef
100 typedef stepper_type::state_type state_type; in BOOST_AUTO_TEST_CASE() typedef
119 typedef stepper_type::state_type state_type; in BOOST_AUTO_TEST_CASE() typedef
145 typedef stepper_type::state_type state_type; in BOOST_AUTO_TEST_CASE() typedef
Drosenbrock4_mp.cpp42 typedef boost::numeric::ublas::vector< value_type > state_type; typedef
75 typedef stepper_type::state_type state_type; in BOOST_AUTO_TEST_CASE() typedef
103 typedef stepper_type::state_type state_type; in BOOST_AUTO_TEST_CASE() typedef
122 typedef stepper_type::state_type state_type; in BOOST_AUTO_TEST_CASE() typedef
Dstepper_with_units.cpp65 typedef fusion::vector< length_type , velocity_type > state_type; typedef
79 typedef typename stepper_type::state_type state_type; in check_stepper() typedef
111 typedef typename stepper_type::state_type state_type; in check_fsal_stepper() typedef
142 typedef typename stepper_type::state_type state_type; in check_error_stepper() typedef
173 typedef typename stepper_type::state_type state_type; in check_fsal_error_stepper() typedef
204 typedef typename stepper_type::state_type state_type; in check_controlled_stepper() typedef
222 typedef typename stepper_type::state_type state_type; in check_dense_output_stepper() typedef
Dadams_bashforth_moulton.cpp59 typedef boost::array< value_type , 3 > state_type; in BOOST_AUTO_TEST_CASE_TEMPLATE() typedef
75 typedef boost::array< double , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
89 typedef boost::array< double , 3 > state_type; in BOOST_AUTO_TEST_CASE() typedef
Dadams_bashforth.cpp126 typedef boost::array< double , 1 > state_type; in BOOST_AUTO_TEST_CASE() typedef
153 typedef boost::array< value_type , 3 > state_type; in BOOST_AUTO_TEST_CASE_TEMPLATE() typedef
168 typedef boost::array< double , 3 > state_type; in BOOST_AUTO_TEST_CASE() typedef
192 typedef boost::array< double , 3 > state_type; in BOOST_AUTO_TEST_CASE() typedef
222 typedef boost::array< double , 3 > state_type; in BOOST_AUTO_TEST_CASE() typedef
Dgeneric_stepper.cpp42 typedef boost::array< value_type , 2 > state_type; typedef
79 typedef rk_generic_type::state_type state_type; in BOOST_AUTO_TEST_CASE() typedef
Ddummy_steppers.hpp33 typedef boost::array< value_type , 1 > state_type; typedef
51 typedef boost::array< value_type , 1 > state_type; typedef
103 typedef boost::array< value_type , 1 > state_type; typedef
/third_party/boost/libs/numeric/odeint/examples/
Dadaptive_iterator.cpp58 typedef boost::array< double , 3 > state_type; in main() typedef
70 []( const std::pair< const state_type&, double > &x ) { in main()
82 []( const pair< const state_type& , double > &x ) { in main()
95 … []( double sum , const pair< const state_type& , double > &x ) { in main()
109 []( const pair< const state_type& , double > &x ) { in main()
137 []( const std::pair< const state_type& , double > &x ) { in main()
148 …boost::adaptors::filtered( [] ( const pair< const state_type& , double > &x ) { return ( x.first[0… in main()
160 … []( double sum , const pair< const state_type& , double > &x ) { in main()
173 []( const pair< const state_type& , double > &x ) { in main()
185 []( const std::pair< const state_type & , double > &x ) { in main()
Dstepper_details.cpp26 typedef boost::array< double , N > state_type; typedef
29 void sys( const state_type & /*x*/ , state_type & /*dxdt*/ , const double /*t*/ ) in sys()
35 void sys1( const state_type &/*x*/ , state_type &/*dxdt*/ , const double /*t*/ ) in sys1()
39 void sys2( const state_type &/*x*/ , state_type &/*dxdt*/ , const double /*t*/ ) in sys2()
Dconst_step_iterator.cpp56 typedef std::array< double , 3 > state_type; in main() typedef
64 []( const std::pair< const state_type&, double > &x ) { in main()
121 []( const std::pair< const state_type &, double > &x ) { in main()
155 []( const std::pair< const state_type& , double > &x ) { in main()
190 … []( double sum , const std::pair< const state_type &, double > &x ) { in main()
215 []( const std::pair< const state_type & , double > &x ) { in main()
251 []( const std::pair< const state_type& , double > &x ) { in main()
/third_party/boost/boost/io/
Dios_state.hpp25 typedef std::ios_base state_type; typedef in boost::io::ios_flags_saver
54 typedef std::ios_base state_type; typedef in boost::io::ios_precision_saver
83 typedef std::ios_base state_type; typedef in boost::io::ios_width_saver
113 typedef std::basic_ios<Ch, Tr> state_type; typedef in boost::io::basic_ios_iostate_saver
145 typedef std::basic_ios<Ch, Tr> state_type; typedef in boost::io::basic_ios_exception_saver
177 typedef std::basic_ios<Ch, Tr> state_type; typedef in boost::io::basic_ios_tie_saver
207 typedef std::basic_ios<Ch, Tr> state_type; typedef in boost::io::basic_ios_rdbuf_saver
237 typedef std::basic_ios<Ch, Tr> state_type; typedef in boost::io::basic_ios_fill_saver
268 typedef std::basic_ios<Ch, Tr> state_type; typedef in boost::io::basic_ios_locale_saver
298 typedef std::ios_base state_type; typedef in boost::io::ios_iword_saver
[all …]
/third_party/boost/boost/locale/
Dutf8_codecvt.hpp27 struct state_type {}; struct in boost::locale::utf8_codecvt
42 static utf::code_point to_unicode(state_type &,char const *&begin,char const *end) in to_unicode() argument
52 static utf::code_point from_unicode(state_type &,utf::code_point u,char *begin,char const *end) in from_unicode() argument
Dgeneric_codecvt.hpp211 typedef typename CodecvtImpl::state_type state_type; in do_length() typedef
256 typedef typename CodecvtImpl::state_type state_type; in do_in() typedef
353 typedef typename CodecvtImpl::state_type state_type; in do_out() typedef
504 typedef typename CodecvtImpl::state_type state_type; in do_length() typedef
539 typedef typename CodecvtImpl::state_type state_type; in do_in() typedef
600 typedef typename CodecvtImpl::state_type state_type; in do_out() typedef
/third_party/boost/boost/numeric/odeint/util/
Dstepper_traits.hpp30 struct state_type struct
32 typedef typename boost::numeric::odeint::unwrap_reference< Stepper >::type stepper_type;
33 typedef typename stepper_type::state_type type;
/third_party/boost/libs/iostreams/test/detail/
Dnull_padded_codecvt.hpp69 typedef null_padded_codecvt_state state_type; typedef in boost::iostreams::test::null_padded_codecvt
191 do_in( state_type&, const char* first1, const char* last1, in do_in() argument
216 do_out( state_type&, const wchar_t* first1, const wchar_t* last1, in do_out() argument
238 do_unshift( state_type&, in do_unshift() argument
252 int do_length( BOOST_IOSTREAMS_CODECVT_CV_QUALIFIER state_type&, in do_length()
/third_party/boost/libs/numeric/odeint/examples/2d_lattice/
Dvector_vector_resize.hpp32 typedef std::vector< std::vector< double > > state_type; typedef
51 typedef std::vector< std::vector< double > > state_type; typedef
66 typedef std::vector< std::vector< double > > state_type; typedef
/third_party/boost/boost/numeric/odeint/iterator/impl/
Dconst_step_iterator_impl.hpp47 typedef State state_type; typedef in boost::numeric::odeint::const_step_iterator_impl
80 const_step_iterator_impl( stepper_type stepper , system_type sys , state_type& /* s */ ) in const_step_iterator_impl() argument
141 typedef State state_type; typedef in boost::numeric::odeint::const_step_iterator_impl
Dadaptive_iterator_impl.hpp63 typedef State state_type; typedef in boost::numeric::odeint::adaptive_iterator_impl
168 typedef State state_type; typedef in boost::numeric::odeint::adaptive_iterator_impl
208 adaptive_iterator_impl( stepper_type stepper , system_type sys , state_type& /* s */ ) in adaptive_iterator_impl() argument
/third_party/abseil-cpp/absl/random/internal/
Dpcg_engine.h52 using state_type = typename Mix::state_type; variable
247 using state_type = __uint128_t; member
281 using state_type = uint64_t; member
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
Dpcg_engine.h53 using state_type = typename Mix::state_type; variable
248 using state_type = __uint128_t; member
282 using state_type = uint64_t; member

12345678