/third_party/boost/libs/variant2/test/ |
D | variant_get_by_type.cpp | 27 variant<int> v; in main() local 35 variant<int> const v; in main() local 43 variant<int const> v; in main() local 51 variant<int volatile> const v; in main() local 59 variant<int> v; in main() local 68 variant<int> const v; in main() local 77 variant<int> v( 1 ); in main() local 86 variant<int> const v( 1 ); in main() local 95 variant<int, float> v; in main() local 107 variant<int, float> const v; in main() local [all …]
|
D | variant_get_by_index.cpp | 27 variant<int> v; in main() local 35 variant<int> const v; in main() local 43 variant<int const> v; in main() local 51 variant<int volatile> const v; in main() local 59 variant<int> v; in main() local 68 variant<int> const v; in main() local 77 variant<int> v( 1 ); in main() local 86 variant<int> const v( 1 ); in main() local 95 variant<int, float> v; in main() local 107 variant<int, float> const v; in main() local [all …]
|
D | variant_in_place_index_construct.cpp | 27 variant<int> v( in_place_index_t<0>{} ); in main() local 34 variant<X> v( in_place_index_t<0>{} ); in main() local 40 variant<int> v( in_place_index_t<0>{}, 1 ); in main() local 47 variant<int, float> v( in_place_index_t<0>{} ); in main() local 54 variant<int, float> v( in_place_index_t<0>{}, 1 ); in main() local 61 variant<int, float> v( in_place_index_t<1>{} ); in main() local 68 variant<int, float> v( in_place_index_t<1>{}, 3.14f ); in main() local 75 variant<int, int, float, float, std::string, std::string> v( in_place_index_t<0>{}, 1 ); in main() local 82 variant<int, int, float, float, std::string, std::string> v( in_place_index_t<1>{}, 1 ); in main() local 89 variant<int, int, float, float, std::string, std::string> v( in_place_index_t<2>{}, 3.14f ); in main() local [all …]
|
D | variant_value_construct.cpp | 26 variant<int> v( 1 ); in main() local 33 variant<int> v( 'a' ); in main() local 40 variant<int> v( X{} ); in main() local 47 variant<int const> v( 1 ); in main() local 54 variant<int const> v( 'a' ); in main() local 61 variant<int const> v( X{} ); in main() local 68 variant<int, float, std::string> v( 1 ); in main() local 76 variant<int, float, std::string> v( 'a' ); in main() local 84 variant<int, float, std::string> v( X{} ); in main() local 92 variant<int, float, std::string> v( 3.14f ); in main() local [all …]
|
D | variant_in_place_index_construct_cx.cpp | 27 constexpr variant<int> v( in_place_index_t<0>{} ); in main() local 34 constexpr variant<X> v( in_place_index_t<0>{} ); in main() local 40 constexpr variant<int> v( in_place_index_t<0>{}, 1 ); in main() local 47 constexpr variant<int, float> v( in_place_index_t<0>{} ); in main() local 54 constexpr variant<int, float> v( in_place_index_t<0>{}, 1 ); in main() local 61 constexpr variant<int, float> v( in_place_index_t<1>{} ); in main() local 68 constexpr variant<int, float> v( in_place_index_t<1>{}, 3.14f ); in main() local 75 constexpr variant<int, int, float, float, X, X> v( in_place_index_t<0>{}, 1 ); in main() local 82 constexpr variant<int, int, float, float, X, X> v( in_place_index_t<1>{}, 1 ); in main() local 89 constexpr variant<int, int, float, float, X, X> v( in_place_index_t<2>{}, 3.14f ); in main() local [all …]
|
D | variant_value_construct_cx.cpp | 23 constexpr variant<int> v( 1 ); in main() local 30 constexpr variant<int> v( 'a' ); in main() local 37 constexpr variant<int> v( X{} ); in main() local 44 constexpr variant<int const> v( 1 ); in main() local 51 constexpr variant<int const> v( 'a' ); in main() local 58 constexpr variant<int const> v( X{} ); in main() local 65 constexpr variant<int, float, X> v( 1 ); in main() local 73 constexpr variant<int, float, X> v( 'a' ); in main() local 81 constexpr variant<int, float, X> v( 3.14f ); in main() local 89 constexpr variant<int, float, X> v( X{} ); in main() local [all …]
|
D | variant_holds_alternative.cpp | 18 variant<int> v; in main() local 23 variant<int, float> v; in main() local 29 variant<int, float> v( 3.14f ); in main() local 35 variant<int, float, float> v; in main() local 40 variant<int, int, float> v( 3.14f ); in main() local 45 variant<int, float, std::string> v; in main() local 52 variant<int, float, std::string> v( 3.14f ); in main() local 59 variant<int, float, std::string> v( "text" ); in main() local 66 variant<int, int, float, std::string> v( 3.14f ); in main() local 72 variant<int, int, float, std::string> v( "text" ); in main() local
|
D | variant_default_construct.cpp | 31 variant<int> v; in main() local 38 variant<int const> v; in main() local 45 variant<int, float, std::string> v; in main() local 52 variant<int, int, std::string> v; in main() local 59 variant<std::string> v; in main() local 66 variant<std::string const> v; in main() local 73 variant<std::string, int, float> v; in main() local 80 variant<std::string, std::string, float> v; in main() local
|
/third_party/boost/libs/stl_interfaces/test/ |
D | static_vec.cpp | 22 vec_type v; in test_default_ctor() local 53 vec_type v(3); in test_other_ctors_assign_ctor() local 63 vec_type v(il); in test_other_ctors_assign_ctor() local 76 vec_type v; in test_other_ctors_assign_ctor() local 89 vec_type v(3, 4); in test_other_ctors_assign_ctor() local 98 vec_type v; in test_other_ctors_assign_ctor() local 112 vec_type v(a.begin(), a.end()); in test_other_ctors_assign_ctor() local 123 vec_type v; in test_other_ctors_assign_ctor() local 141 vec_type v; in test_resize() local 153 vec_type v(6); in test_resize() local [all …]
|
D | static_vec_noncopyable.cpp | 56 vec_type v; in test_default_ctor() local 91 vec_type v(3); in test_other_ctors_assign_ctor() local 154 vec_type v(a.begin(), a.end()); in test_other_ctors_assign_ctor() local 168 vec_type v; in test_other_ctors_assign_ctor() local 189 vec_type v; in test_resize() local 201 vec_type v(6); in test_resize() local 220 vec_type v(std::move(v2)); in test_assignment_copy_move_equality() local 228 vec_type v; in test_assignment_copy_move_equality() local 422 vec_type v; in test_iterators() local 476 vec_type const & v = v_; in test_iterators() local [all …]
|
/third_party/boost/libs/math/reporting/performance/ |
D | test_distributions.cpp | 225 …tester.run_timed_tests([](const std::vector<double>& v, double x){ return pdf(D<double, default_p… in test_boost_1_param() 226 …tester.run_timed_tests([](const std::vector<double>& v, double x){ return cdf(D<double, default_p… in test_boost_1_param() 227 …tester.run_timed_tests([](const std::vector<double>& v, double x){ return quantile(D<double, defa… in test_boost_1_param() 230 …tester.run_timed_tests([](const std::vector<double>& v, double x){ return pdf(D<double, no_promot… in test_boost_1_param() 231 …tester.run_timed_tests([](const std::vector<double>& v, double x){ return cdf(D<double, no_promot… in test_boost_1_param() 232 …tester.run_timed_tests([](const std::vector<double>& v, double x){ return quantile(D<double, no_p… in test_boost_1_param() 234 …tester.run_timed_tests([](const std::vector<double>& v, double x){ return pdf(D<double, no_promot… in test_boost_1_param() 235 …tester.run_timed_tests([](const std::vector<double>& v, double x){ return cdf(D<double, no_promot… in test_boost_1_param() 236 …tester.run_timed_tests([](const std::vector<double>& v, double x){ return quantile(D<double, no_p… in test_boost_1_param() 238 …tester.run_timed_tests([](const std::vector<double>& v, double x){ return pdf(D<float, no_promote… in test_boost_1_param() [all …]
|
D | test_tgamma.cpp | 33 …screen_data([](const std::vector<double>& v){ return boost::math::tgamma(v[0]); }, [](const std:… in main() 37 …screen_data([](const std::vector<double>& v){ return ::tgamma(v[0]); }, [](const std::vector<dou… in main() 40 …screen_data([](const std::vector<double>& v){ return std::tr1::tgamma(v[0]); }, [](const std::ve… in main() 43 …screen_data([](const std::vector<double>& v){ return gsl_sf_gamma(v[0]); }, [](const std::vector… in main() 46 …screen_data([](const std::vector<double>& v){ return gammafn(v[0]); }, [](const std::vector<doub… in main() 53 …double time = exec_timed_test([](const std::vector<double>& v){ return boost::math::tgamma(v[0]);… in main() 65 …double time = exec_timed_test([](const std::vector<double>& v){ return boost::math::tgamma(v[0], … in main() 76 time = exec_timed_test([](const std::vector<double>& v){ return ::tgamma(v[0]); }); in main() 81 time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::tgamma(v[0]); }); in main() 86 time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_gamma(v[0]); }); in main() [all …]
|
D | test_lgamma.cpp | 33 …screen_data([](const std::vector<double>& v){ return boost::math::lgamma(v[0]); }, [](const std:… in main() 37 …screen_data([](const std::vector<double>& v){ return ::lgamma(v[0]); }, [](const std::vector<dou… in main() 40 …screen_data([](const std::vector<double>& v){ return std::tr1::lgamma(v[0]); }, [](const std::ve… in main() 43 …screen_data([](const std::vector<double>& v){ return gsl_sf_lngamma(v[0]); }, [](const std::vect… in main() 46 …screen_data([](const std::vector<double>& v){ return lgammafn(v[0]); }, [](const std::vector<dou… in main() 53 …double time = exec_timed_test([](const std::vector<double>& v){ return boost::math::lgamma(v[0]);… in main() 65 …double time = exec_timed_test([](const std::vector<double>& v){ return boost::math::lgamma(v[0], … in main() 76 time = exec_timed_test([](const std::vector<double>& v){ return ::lgamma(v[0]); }); in main() 81 time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::lgamma(v[0]); }); in main() 86 time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_lngamma(v[0]); }); in main() [all …]
|
D | test_yn.cpp | 68 …screen_data([](const std::vector<double>& v){ return boost::math::cyl_neumann(static_cast<int>(v[… in main() 72 …screen_data([](const std::vector<double>& v){ return ::yn(static_cast<int>(v[0]), v[1]); }, [](c… in main() 75 …screen_data([](const std::vector<double>& v){ return std::tr1::cyl_neumann(static_cast<int>(v[0])… in main() 78 …screen_data([](const std::vector<double>& v){ return gsl_sf_bessel_Yn(static_cast<int>(v[0]), v[1… in main() 81 …screen_data([](const std::vector<double>& v){ return bessel_y(v[1], static_cast<int>(v[0])); }, … in main() 90 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::cyl_neumann(static_c… in main() 102 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::cyl_neumann(static_c… in main() 113 …time = exec_timed_test([](const std::vector<double>& v){ return ::yn(static_cast<int>(v[0]), v[1]… in main() 118 …time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::cyl_neumann(static_cast… in main() 123 …time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_bessel_Yn(static_cast<int>… in main() [all …]
|
D | test_jn.cpp | 96 …screen_data([](const std::vector<double>& v){ return boost::math::cyl_bessel_j(static_cast<int>(v… in main() 100 …screen_data([](const std::vector<double>& v){ return ::jn(static_cast<int>(v[0]), v[1]); }, [](c… in main() 103 …screen_data([](const std::vector<double>& v){ return std::tr1::cyl_bessel_j(static_cast<int>(v[0]… in main() 106 …screen_data([](const std::vector<double>& v){ return gsl_sf_bessel_Jn(static_cast<int>(v[0]), v[1… in main() 109 …screen_data([](const std::vector<double>& v){ return bessel_j(v[1], static_cast<int>(v[0])); }, … in main() 118 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::cyl_bessel_j(static_… in main() 134 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::cyl_bessel_j(static_… in main() 145 …time = exec_timed_test([](const std::vector<double>& v){ return ::jn(static_cast<int>(v[0]), v[1]… in main() 150 …time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::cyl_bessel_j(static_cas… in main() 155 …time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_bessel_Jn(static_cast<int>… in main() [all …]
|
D | test_beta.cpp | 33 …screen_data([](const std::vector<double>& v){ return boost::math::beta(v[0], v[1]); }, [](const … in main() 37 …screen_data([](const std::vector<double>& v){ return std::tr1::beta(v[0], v[1]); }, [](const std… in main() 40 …screen_data([](const std::vector<double>& v){ return gsl_sf_beta(v[0], v[1]); }, [](const std::v… in main() 43 …screen_data([](const std::vector<double>& v){ return beta(v[0], v[1]); }, [](const std::vector<d… in main() 52 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::beta(v[0], v[1]); }… in main() 64 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::beta(v[0], v[1], boo… in main() 75 time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::beta(v[0], v[1]); }); in main() 80 time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_beta(v[0], v[1]); }); in main() 85 time = exec_timed_test([](const std::vector<double>& v){ return beta(v[0], v[1]); }); in main()
|
D | test_erfc.cpp | 32 …screen_data([](const std::vector<double>& v){ return boost::math::erfc(v[0]); }, [](const std::v… in main() 36 …screen_data([](const std::vector<double>& v){ return ::erfc(v[0]); }, [](const std::vector<doubl… in main() 39 …screen_data([](const std::vector<double>& v){ return std::tr1::erfc(v[0]); }, [](const std::vect… in main() 42 …screen_data([](const std::vector<double>& v){ return gsl_sf_erfc(v[0]); }, [](const std::vector<… in main() 49 …double time = exec_timed_test([](const std::vector<double>& v){ return boost::math::erfc(v[0]); … in main() 61 …double time = exec_timed_test([](const std::vector<double>& v){ return boost::math::erfc(v[0], bo… in main() 72 time = exec_timed_test([](const std::vector<double>& v){ return ::erfc(v[0]); }); in main() 78 time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::erfc(v[0]); }); in main() 83 time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_erfc(v[0]); }); in main()
|
D | test_erf.cpp | 32 …screen_data([](const std::vector<double>& v){ return boost::math::erf(v[0]); }, [](const std::ve… in main() 36 …screen_data([](const std::vector<double>& v){ return ::erf(v[0]); }, [](const std::vector<double… in main() 39 …screen_data([](const std::vector<double>& v){ return std::tr1::erf(v[0]); }, [](const std::vecto… in main() 42 …screen_data([](const std::vector<double>& v){ return gsl_sf_erf(v[0]); }, [](const std::vector<d… in main() 48 …double time = exec_timed_test([](const std::vector<double>& v){ return boost::math::erf(v[0]); }… in main() 60 …double time = exec_timed_test([](const std::vector<double>& v){ return boost::math::erf(v[0], boo… in main() 71 time = exec_timed_test([](const std::vector<double>& v){ return ::erf(v[0]); }); in main() 76 time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::erf(v[0]); }); in main() 81 time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_erf(v[0]); }); in main()
|
D | test_jv.cpp | 58 …screen_data([](const std::vector<double>& v){ return boost::math::cyl_bessel_j(v[0], v[1]); }, [… in main() 62 …screen_data([](const std::vector<double>& v){ return std::tr1::cyl_bessel_j(v[0], v[1]); }, [](c… in main() 66 …screen_data([](const std::vector<double>& v){ return gsl_sf_bessel_Jnu(v[0], v[1]); }, [](const … in main() 70 …screen_data([](const std::vector<double>& v){ return bessel_j(v[1], v[0]); }, [](const std::vect… in main() 79 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::cyl_bessel_j(v[0], v… in main() 91 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::cyl_bessel_j(v[0], v… in main() 102 …time = exec_timed_test([](const std::vector<double>& v){ return std::tr1::cyl_bessel_j(v[0], v[1]… in main() 107 …time = exec_timed_test([](const std::vector<double>& v){ return gsl_sf_bessel_Jnu(v[0], v[1]); }… in main() 112 time = exec_timed_test([](const std::vector<double>& v){ return bessel_j(v[1], v[0]); }); in main()
|
/third_party/boost/libs/qvm/test/ |
D | swizzle4_test.cpp | 107 test_qvm::vector<V1,4> v=_0000(); in main() local 114 test_qvm::vector<V1,4> v=_0001(); in main() local 121 test_qvm::vector<V1,4> v=_0010(); in main() local 128 test_qvm::vector<V1,4> v=_0011(); in main() local 135 test_qvm::vector<V1,4> v=_0100(); in main() local 142 test_qvm::vector<V1,4> v=_0101(); in main() local 149 test_qvm::vector<V1,4> v=_0110(); in main() local 156 test_qvm::vector<V1,4> v=_0111(); in main() local 163 test_qvm::vector<V1,4> v=_1000(); in main() local 170 test_qvm::vector<V1,4> v=_1001(); in main() local [all …]
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/asm/ |
D | atomic.h | 47 #define atomic_read(v) LOS_AtomicRead(v) argument 48 #define atomic_set(v, i) LOS_AtomicSet(v, i) argument 49 #define atomic_inc(v) LOS_AtomicInc(v) argument 50 #define atomic_dec(v) LOS_AtomicDec(v) argument 51 #define atomic_add(i, v) LOS_AtomicAdd(v, i) argument 52 #define atomic_sub(i, v) LOS_AtomicSub(v, i) argument 54 #define atomic_add_return(i, v) LOS_AtomicAdd(v, i) argument 55 #define atomic_inc_return(v) LOS_AtomicIncRet(v) argument 56 #define atomic_dec_return(v) LOS_AtomicDecRet(v) argument 57 #define atomic_dec_and_test(v) (atomic_dec_return(v) == 0) argument [all …]
|
/third_party/boost/libs/container/test/ |
D | insert_vs_emplace_test.cpp | 118 boost::container::vector<X> v; in main() local 132 boost::container::vector<X> v; in main() local 146 boost::container::vector<X> v; in main() local 160 boost::container::vector<X> v; in main() local 175 boost::container::vector<X> v; in main() local 189 boost::container::vector<X> v; in main() local 204 boost::container::vector<X> v; in main() local 217 boost::container::vector<X> v; in main() local 234 boost::container::vector<X> v; in main() local 248 boost::container::vector<X> v; in main() local [all …]
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/Generics/ |
D | parserCastVersusArrowFunction1.ts | 1 var v = <T>() => 1; variable 2 var v = <T>a; variable 4 var v = <T>(a) => 1; variable 5 var v = <T>(a, b) => 1; variable 6 var v = <T>(a = 1, b = 2) => 1; variable 8 var v = <T>(a); variable 9 var v = <T>(a, b); variable 10 var v = <T>(a = 1, b = 2); variable
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
D | Vector.cpp | 32 Vector &Vector::operator+=(const Vector &v) in operator +=() 41 Vector &Vector::operator-=(const Vector &v) in operator -=() 66 bool operator==(const Vector &U, const Vector &v) in operator ==() 74 bool operator!=(const Vector &U, const Vector &v) in operator !=() 82 bool operator>(const Vector &u, const Vector &v) in operator >() 90 bool operator<(const Vector &u, const Vector &v) in operator <() 98 Vector operator+(const Vector &u, const Vector &v) in operator +() 103 Vector operator-(const Vector &u, const Vector &v) in operator -() 108 float operator*(const Vector &u, const Vector &v) in operator *() 113 Vector operator*(float s, const Vector &v) in operator *() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/arm/include/asm/arch-mx5/ |
D | crm_regs.h | 80 #define MXC_CCM_CCR_OSCNT(v) ((v) & 0xFF) argument 92 #define MXC_CCM_CCSR_STEP_SEL(v) (((v) & 0x3) << 7) argument 96 #define MXC_CCM_CCSR_PLL2_DIV_PODF(v) (((v) & 0x3) << 5) argument 100 #define MXC_CCM_CCSR_PLL3_DIV_PODF(v) (((v) & 0x3) << 3) argument 109 #define MXC_CCM_CACRR_ARM_PODF(v) ((v) & 0x7) argument 116 #define MXC_CCM_CBCDR_DDR_PODF(v) (((v) & 0x7) << 27) argument 122 #define MXC_CCM_CBCDR_EMI_PODF(v) (((v) & 0x7) << 22) argument 126 #define MXC_CCM_CBCDR_AXI_B_PODF(v) (((v) & 0x7) << 19) argument 130 #define MXC_CCM_CBCDR_AXI_A_PODF(v) (((v) & 0x7) << 16) argument 134 #define MXC_CCM_CBCDR_NFC_PODF(v) (((v) & 0x7) << 13) argument [all …]
|