Home
last modified time | relevance | path

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

/external/eigen/test/
Dsparse_ref.cpp60 EIGEN_DONT_INLINE void call_ref_5(const Ref<const SparseVector<float> >& a, const B &b) { VERIFY_IS… in call_ref_5() function
121 VERIFY_EVALUATION_COUNT( call_ref_5(vc, vc), 0); in call_ref()
122 VERIFY_EVALUATION_COUNT( call_ref_5(vr, vr.transpose()), 0); in call_ref()
124 VERIFY_EVALUATION_COUNT( call_ref_5(A.col(2), A.col(2)), 0); in call_ref()
126 VERIFY_EVALUATION_COUNT( call_ref_5(A.row(2), A.row(2).transpose()), 1); in call_ref()
Dref.cpp161 EIGEN_DONT_INLINE void call_ref_5(Ref<MatrixXf,0,OuterStride<> > a, const B &b) { VERIFY_IS_EQUAL(a… in call_ref_5() function
207 VERIFY_EVALUATION_COUNT( call_ref_5(a,a), 0); in call_ref()
208 VERIFY_EVALUATION_COUNT( call_ref_5(a.head(3),a.head(3)), 0); in call_ref()
209 VERIFY_EVALUATION_COUNT( call_ref_5(A,A), 0); in call_ref()
211 VERIFY_EVALUATION_COUNT( call_ref_5(A.block(1,1,2,2),A.block(1,1,2,2)), 0); in call_ref()
212 …VERIFY_EVALUATION_COUNT( call_ref_5(b,b), 0); // storage order do not match, but this … in call_ref()
213 VERIFY_EVALUATION_COUNT( call_ref_5(a.row(3),a.row(3)), 0); in call_ref()