Home
last modified time | relevance | path

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

/external/eigen/test/
Dref.cpp163 EIGEN_DONT_INLINE void call_ref_6(const Ref<const MatrixXf,0,OuterStride<> >& a, const B &b) { VERI… in call_ref_6() function
215 VERIFY_EVALUATION_COUNT( call_ref_6(a,a), 0); in call_ref()
216 VERIFY_EVALUATION_COUNT( call_ref_6(a.head(3),a.head(3)), 0); in call_ref()
217 …VERIFY_EVALUATION_COUNT( call_ref_6(A.row(3),A.row(3)), 1); // evaluated into a temp tho… in call_ref()
219 VERIFY_EVALUATION_COUNT( call_ref_6(A+A,tmp), 1); // evaluated into a temp in call_ref()
220 VERIFY_EVALUATION_COUNT( call_ref_6(A,A), 0); in call_ref()
221 …VERIFY_EVALUATION_COUNT( call_ref_6(A.transpose(),A.transpose()), 1); // evaluated into a tem… in call_ref()
222 VERIFY_EVALUATION_COUNT( call_ref_6(A.block(1,1,2,2),A.block(1,1,2,2)), 0); in call_ref()