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

/external/eigen/test/
H A Dsparse_ref.cpp57 EIGEN_DONT_INLINE void call_ref_4(Ref<SparseVector<float> > a, const B &b) { VERIFY_IS_EQUAL(a.toDense(),b.toDense()); } function
119 VERIFY_EVALUATION_COUNT( call_ref_4(vc, vc), 0);
120 VERIFY_EVALUATION_COUNT( call_ref_4(vr, vr.transpose()), 0);
123 VERIFY_EVALUATION_COUNT( call_ref_4(A.col(2), A.col(2)), 0);
125 // VERIFY_EVALUATION_COUNT( call_ref_4(A.row(2), A.row(2).transpose()), 1); // does not compile on purpose
H A Dref.cpp159 EIGEN_DONT_INLINE void call_ref_4(const Ref<const VectorXf,0,InnerStride<> >& a, const B &b) { VERIFY_IS_EQUAL(a,b); } function
188 VERIFY_EVALUATION_COUNT( call_ref_4(A.row(3),A.row(3).transpose()), 0);
202 VERIFY_EVALUATION_COUNT( call_ref_4(ac.head(5),ac.head(5)), 0);
204 VERIFY_EVALUATION_COUNT( call_ref_4(a+a,tmp), 1); // evaluated into a temp
205 VERIFY_EVALUATION_COUNT( call_ref_4(ca.imag(),ca.imag()), 0);

Completed in 197 milliseconds