Lines Matching refs:bu
36 namespace bu = boost::units;
40 BOOST_CONSTEXPR_OR_CONST bu::quantity<si::time> s1 = 12.5 * si::seconds; in BOOST_AUTO_TEST_CASE()
41 BOOST_CONSTEXPR_OR_CONST bu::quantity<si::time> s2(si::nano * s1); in BOOST_AUTO_TEST_CASE()
46 BOOST_CONSTEXPR_OR_CONST bu::quantity<si::time> s1 = 12.5 * si::seconds; in BOOST_AUTO_TEST_CASE()
47 typedef bu::multiply_typeof_helper<si::nano_type, si::time>::type time_unit; in BOOST_AUTO_TEST_CASE()
48 BOOST_CONSTEXPR_OR_CONST bu::quantity<time_unit> s2(s1); in BOOST_AUTO_TEST_CASE()
53 typedef bu::multiply_typeof_helper<si::mega_type, si::time>::type mega_time_unit; in BOOST_AUTO_TEST_CASE()
54 typedef bu::multiply_typeof_helper<si::micro_type, si::time>::type micro_time_unit; in BOOST_AUTO_TEST_CASE()
55 BOOST_CONSTEXPR_OR_CONST bu::quantity<mega_time_unit> s1(12.5 * si::seconds); in BOOST_AUTO_TEST_CASE()
56 BOOST_CONSTEXPR_OR_CONST bu::quantity<micro_time_unit> s2(s1); in BOOST_AUTO_TEST_CASE()
74 stream << bu::name_format << si::nano * 12.5 * si::seconds; in BOOST_AUTO_TEST_CASE()