Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/LU/
DInverseImpl.h77 const MatrixType& matrix, const typename ResultType::Scalar& invdet,
80 result.coeffRef(0,0) = matrix.coeff(1,1) * invdet;
81 result.coeffRef(1,0) = -matrix.coeff(1,0) * invdet;
82 result.coeffRef(0,1) = -matrix.coeff(0,1) * invdet;
83 result.coeffRef(1,1) = matrix.coeff(0,0) * invdet;
93 const Scalar invdet = typename MatrixType::Scalar(1) / matrix.determinant();
94 compute_inverse_size2_helper(matrix, invdet, result);
115 const Scalar invdet = Scalar(1) / determinant;
116 compute_inverse_size2_helper(matrix, invdet, inverse);
142 const typename ResultType::Scalar& invdet,
[all …]
/external/skqp/src/core/
DSkMatrix44.cpp582 double invdet = 1.0 / det; in invert() local
586 if (!sk_float_isfinite(invdet)) { in invert()
590 b00 *= invdet; in invert()
591 b01 *= invdet; in invert()
592 b03 *= invdet; in invert()
593 b06 *= invdet; in invert()
594 b07 *= invdet; in invert()
595 b08 *= invdet; in invert()
596 b09 *= invdet; in invert()
597 b10 *= invdet; in invert()
[all …]
/external/skia/src/core/
DSkMatrix44.cpp582 double invdet = 1.0 / det; in invert() local
586 if (!sk_float_isfinite(invdet)) { in invert()
590 b00 *= invdet; in invert()
591 b01 *= invdet; in invert()
592 b03 *= invdet; in invert()
593 b06 *= invdet; in invert()
594 b07 *= invdet; in invert()
595 b08 *= invdet; in invert()
596 b09 *= invdet; in invert()
597 b10 *= invdet; in invert()
[all …]
/external/eigen/Eigen/src/Geometry/
DHyperplane.h204 Scalar invdet = Scalar(1) / det; in intersection() local
205 …return VectorType(invdet*(coeffs().coeff(1)*other.coeffs().coeff(2)-other.coeffs().coeff(1)*coeffs… in intersection()
206invdet*(other.coeffs().coeff(0)*coeffs().coeff(2)-coeffs().coeff(0)*other.coeffs().coeff(2))); in intersection()