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

/external/eigen/test/
H A Dref.cpp163 EIGEN_DONT_INLINE void call_ref_6(const Ref<const MatrixXf,0,OuterStride<> >& a, const B &b) { VERIFY_IS_EQUAL(a,b); } function
215 VERIFY_EVALUATION_COUNT( call_ref_6(a,a), 0);
216 VERIFY_EVALUATION_COUNT( call_ref_6(a.head(3),a.head(3)), 0);
217 VERIFY_EVALUATION_COUNT( call_ref_6(A.row(3),A.row(3)), 1); // evaluated into a temp thouth it could be avoided by viewing it as a 1xn matrix
219 VERIFY_EVALUATION_COUNT( call_ref_6(A+A,tmp), 1); // evaluated into a temp
220 VERIFY_EVALUATION_COUNT( call_ref_6(A,A), 0);
221 VERIFY_EVALUATION_COUNT( call_ref_6(A.transpose(),A.transpose()), 1); // evaluated into a temp because the storage orders do not match
222 VERIFY_EVALUATION_COUNT( call_ref_6(A.block(1,1,2,2),A.block(1,1,2,2)), 0);

Completed in 105 milliseconds