Lines Matching refs:m1_copy
47 m1_copy = m1, in block() local
65 m1 = m1_copy; in block()
66 m1.row(r1) += s1 * m1_copy.row(r2); in block()
67 VERIFY_IS_APPROX(m1.row(r1), m1_copy.row(r1) + s1 * m1_copy.row(r2)); in block()
69 m1.row(r1).row(0) += s1 * m1_copy.row(r2); in block()
70 VERIFY_IS_APPROX(m1.row(r1), m1_copy.row(r1) + Scalar(2) * s1 * m1_copy.row(r2)); in block()
71 m1 = m1_copy; in block()
72 m1.col(c1) += s1 * m1_copy.col(c2); in block()
73 VERIFY_IS_APPROX(m1.col(c1), m1_copy.col(c1) + s1 * m1_copy.col(c2)); in block()
74 m1.col(c1).col(0) += s1 * m1_copy.col(c2); in block()
75 VERIFY_IS_APPROX(m1.col(c1), m1_copy.col(c1) + Scalar(2) * s1 * m1_copy.col(c2)); in block()