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

/external/eigen/Eigen/src/LU/
H A DInverse.h70 const MatrixType& matrix, const typename ResultType::Scalar& invdet,
73 result.coeffRef(0,0) = matrix.coeff(1,1) * invdet;
74 result.coeffRef(1,0) = -matrix.coeff(1,0) * invdet;
75 result.coeffRef(0,1) = -matrix.coeff(0,1) * invdet;
76 result.coeffRef(1,1) = matrix.coeff(0,0) * invdet;
85 const Scalar invdet = typename MatrixType::Scalar(1) / matrix.determinant(); local
86 compute_inverse_size2_helper(matrix, invdet, result);
105 const Scalar invdet = Scalar(1) / determinant; local
106 compute_inverse_size2_helper(matrix, invdet, inverse);
130 const typename ResultType::Scalar& invdet,
69 compute_inverse_size2_helper( const MatrixType& matrix, const typename ResultType::Scalar& invdet, ResultType& result) argument
128 compute_inverse_size3_helper( const MatrixType& matrix, const typename ResultType::Scalar& invdet, const Matrix<typename ResultType::Scalar,3,1>& cofactors_col0, ResultType& result) argument
154 const Scalar invdet = Scalar(1) / det; local
178 const Scalar invdet = Scalar(1) / determinant; local
[all...]
/external/skia/src/utils/
H A DSkMatrix44.cpp538 double invdet = 1.0 / det; local
540 b00 *= invdet;
541 b01 *= invdet;
542 b02 *= invdet;
543 b03 *= invdet;
544 b04 *= invdet;
545 b05 *= invdet;
546 b06 *= invdet;
547 b07 *= invdet;
548 b08 *= invdet;
[all...]
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DHyperplane.h183 Scalar invdet = Scalar(1) / det; local
184 return VectorType(invdet*(coeffs().coeff(1)*other.coeffs().coeff(2)-other.coeffs().coeff(1)*coeffs().coeff(2)),
185 invdet*(other.coeffs().coeff(0)*coeffs().coeff(2)-coeffs().coeff(0)*other.coeffs().coeff(2)));
/external/eigen/Eigen/src/Geometry/
H A DHyperplane.h194 Scalar invdet = Scalar(1) / det; local
195 return VectorType(invdet*(coeffs().coeff(1)*other.coeffs().coeff(2)-other.coeffs().coeff(1)*coeffs().coeff(2)),
196 invdet*(other.coeffs().coeff(0)*coeffs().coeff(2)-coeffs().coeff(0)*other.coeffs().coeff(2)));

Completed in 133 milliseconds