Lines Matching full:conj
45 numext::conj(lhs.coeff(1) * rhs.coeff(2) - lhs.coeff(2) * rhs.coeff(1)), in cross()
46 numext::conj(lhs.coeff(2) * rhs.coeff(0) - lhs.coeff(0) * rhs.coeff(2)), in cross()
47 numext::conj(lhs.coeff(0) * rhs.coeff(1) - lhs.coeff(1) * rhs.coeff(0)) in cross()
61 numext::conj(lhs.coeff(1) * rhs.coeff(2) - lhs.coeff(2) * rhs.coeff(1)), in run()
62 numext::conj(lhs.coeff(2) * rhs.coeff(0) - lhs.coeff(0) * rhs.coeff(2)), in run()
63 numext::conj(lhs.coeff(0) * rhs.coeff(1) - lhs.coeff(1) * rhs.coeff(0)), in run()
157 perp.coeffRef(maxi) = -numext::conj(src.coeff(sndi)) * invnm; in run()
158 perp.coeffRef(sndi) = numext::conj(src.coeff(maxi)) * invnm; in run()
185 perp.coeffRef(0) = -numext::conj(src.y())*invnm;
186 perp.coeffRef(1) = numext::conj(src.x())*invnm;
197 perp.coeffRef(1) = -numext::conj(src.z())*invnm;
198 perp.coeffRef(2) = numext::conj(src.y())*invnm;
211 { return VectorType(-numext::conj(src.y()), numext::conj(src.x())).normalized(); }