Home
last modified time | relevance | path

Searched refs:invdet (Results 1 – 4 of 4) sorted by relevance

/external/eigen/Eigen/src/LU/
DInverse.h71 const MatrixType& matrix, const typename ResultType::Scalar& invdet,
74 result.coeffRef(0,0) = matrix.coeff(1,1) * invdet;
75 result.coeffRef(1,0) = -matrix.coeff(1,0) * invdet;
76 result.coeffRef(0,1) = -matrix.coeff(0,1) * invdet;
77 result.coeffRef(1,1) = matrix.coeff(0,0) * invdet;
86 const Scalar invdet = typename MatrixType::Scalar(1) / matrix.determinant();
87 compute_inverse_size2_helper(matrix, invdet, result);
107 const Scalar invdet = Scalar(1) / determinant;
108 compute_inverse_size2_helper(matrix, invdet, inverse);
132 const typename ResultType::Scalar& invdet,
[all …]
/external/skia/src/utils/
DSkMatrix44.cpp543 double invdet = 1.0 / det; in invert() local
547 if (!sk_float_isfinite(invdet)) { in invert()
554 b00 *= invdet; in invert()
555 b01 *= invdet; in invert()
556 b03 *= invdet; in invert()
557 b06 *= invdet; in invert()
558 b07 *= invdet; in invert()
559 b08 *= invdet; in invert()
560 b09 *= invdet; in invert()
561 b10 *= invdet; in invert()
[all …]
/external/eigen/Eigen/src/Eigen2Support/Geometry/
DHyperplane.h183 Scalar invdet = Scalar(1) / det; in intersection() local
184 …return VectorType(invdet*(coeffs().coeff(1)*other.coeffs().coeff(2)-other.coeffs().coeff(1)*coeffs… in intersection()
185invdet*(other.coeffs().coeff(0)*coeffs().coeff(2)-coeffs().coeff(0)*other.coeffs().coeff(2))); in intersection()
/external/eigen/Eigen/src/Geometry/
DHyperplane.h205 Scalar invdet = Scalar(1) / det; in intersection() local
206 …return VectorType(invdet*(coeffs().coeff(1)*other.coeffs().coeff(2)-other.coeffs().coeff(1)*coeffs… in intersection()
207invdet*(other.coeffs().coeff(0)*coeffs().coeff(2)-coeffs().coeff(0)*other.coeffs().coeff(2))); in intersection()