Home
last modified time | relevance | path

Searched refs:VERIFY_MIX_SCALAR (Results 1 – 1 of 1) sorted by relevance

/external/eigen/test/
Dmixingtypes.cpp33 #define VERIFY_MIX_SCALAR(XPR,REF) \ macro
84 VERIFY_MIX_SCALAR(vcf * sf , vcf * complex<float>(sf)); in mixingtypes()
85 VERIFY_MIX_SCALAR(sd * vcd , complex<double>(sd) * vcd); in mixingtypes()
86 VERIFY_MIX_SCALAR(vf * scf , vf.template cast<complex<float> >() * scf); in mixingtypes()
87 VERIFY_MIX_SCALAR(scd * vd , scd * vd.template cast<complex<double> >()); in mixingtypes()
89 VERIFY_MIX_SCALAR(vcf * 2 , vcf * complex<float>(2)); in mixingtypes()
90 VERIFY_MIX_SCALAR(vcf * 2.1 , vcf * complex<float>(2.1)); in mixingtypes()
91 VERIFY_MIX_SCALAR(2 * vcf, vcf * complex<float>(2)); in mixingtypes()
92 VERIFY_MIX_SCALAR(2.1 * vcf , vcf * complex<float>(2.1)); in mixingtypes()
95 VERIFY_MIX_SCALAR(vcf / sf , vcf / complex<float>(sf)); in mixingtypes()
[all …]