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

/external/eigen/test/
H A Dsparse_ref.cpp60 EIGEN_DONT_INLINE void call_ref_5(const Ref<const SparseVector<float> >& a, const B &b) { VERIFY_IS_EQUAL(a.toDense(),b.toDense()); } function
121 VERIFY_EVALUATION_COUNT( call_ref_5(vc, vc), 0);
122 VERIFY_EVALUATION_COUNT( call_ref_5(vr, vr.transpose()), 0);
124 VERIFY_EVALUATION_COUNT( call_ref_5(A.col(2), A.col(2)), 0);
126 VERIFY_EVALUATION_COUNT( call_ref_5(A.row(2), A.row(2).transpose()), 1);
H A Dref.cpp161 EIGEN_DONT_INLINE void call_ref_5(Ref<MatrixXf,0,OuterStride<> > a, const B &b) { VERIFY_IS_EQUAL(a,b); } function
207 VERIFY_EVALUATION_COUNT( call_ref_5(a,a), 0);
208 VERIFY_EVALUATION_COUNT( call_ref_5(a.head(3),a.head(3)), 0);
209 VERIFY_EVALUATION_COUNT( call_ref_5(A,A), 0);
210 // call_ref_5(A.transpose(),A.transpose()); // does not compile because storage order does not match
211 VERIFY_EVALUATION_COUNT( call_ref_5(A.block(1,1,2,2),A.block(1,1,2,2)), 0);
212 VERIFY_EVALUATION_COUNT( call_ref_5(b,b), 0); // storage order do not match, but this is a degenerate case that should work
213 VERIFY_EVALUATION_COUNT( call_ref_5(a.row(3),a.row(3)), 0);

Completed in 173 milliseconds