HomeSort by relevance Sort by last modified time
    Searched full:call_ref_1 (Results 1 - 1 of 1) sorted by null

  /external/eigen/test/
ref.cpp 158 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(a+a, a+a); // does not compile for obvious reaso
    [all...]

Completed in 318 milliseconds