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

/external/eigen/test/
H A Dref.cpp158 EIGEN_DONT_INLINE void call_ref_1(Ref<VectorXf> a, const B &b) { VERIFY_IS_EQUAL(a,b); } function
184 VERIFY_EVALUATION_COUNT( call_ref_1(a,a), 0);
185 VERIFY_EVALUATION_COUNT( call_ref_1(b,b.transpose()), 0);
186 // call_ref_1(ac,a<c); // does not compile because ac is const
187 VERIFY_EVALUATION_COUNT( call_ref_1(ab,ab), 0);
188 VERIFY_EVALUATION_COUNT( call_ref_1(a.head(4),a.head(4)), 0);
189 VERIFY_EVALUATION_COUNT( call_ref_1(abc,abc), 0);
190 VERIFY_EVALUATION_COUNT( call_ref_1(A.col(3),A.col(3)), 0);
191 // call_ref_1(A.row(3),A.row(3)); // does not compile because innerstride!=1
194 // call_ref_1(
[all...]

Completed in 24 milliseconds