HomeSort by relevance Sort by last modified time
    Searched refs:invdet (Results 1 - 6 of 6) sorted by null

  /external/eigen/Eigen/src/LU/
Inverse.h 71 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(); local
87 compute_inverse_size2_helper(matrix, invdet, result);
107 const Scalar invdet = Scalar(1) / determinant; local
108 compute_inverse_size2_helper(matrix, invdet, inverse);
132 const typename ResultType::Scalar& invdet,
156 const Scalar invdet = Scalar(1) \/ det; local
181 const Scalar invdet = Scalar(1) \/ determinant; local
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/
utility.hpp 174 double invdet = 1.0 / det; local
176 x[0] = saturate_cast<T>(invdet * (b[0] * A[1][1] - b[1] * A[0][1]));
178 x[1] = saturate_cast<T>(invdet * (A[0][0] * b[1] - A[1][0] * b[0]));
195 double invdet = 1.0 / det; local
197 x[0] = saturate_cast<T>(invdet *
202 x[1] = saturate_cast<T>(invdet *
207 x[2] = saturate_cast<T>(invdet *
  /external/skia/src/utils/
SkMatrix44.cpp 560 double invdet = 1.0 / det; local
564 if (!sk_float_isfinite(invdet)) {
568 b00 *= invdet;
569 b01 *= invdet;
570 b03 *= invdet;
571 b06 *= invdet;
572 b07 *= invdet;
573 b08 *= invdet;
574 b09 *= invdet;
575 b10 *= invdet;
621 double invdet = 1.0 \/ det; local
    [all...]
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 233 final float invdet = 1.0f / det; local
234 mInv[ mInvOffset] = dst0 * invdet;
235 mInv[ 1 + mInvOffset] = dst1 * invdet;
236 mInv[ 2 + mInvOffset] = dst2 * invdet;
237 mInv[ 3 + mInvOffset] = dst3 * invdet;
239 mInv[ 4 + mInvOffset] = dst4 * invdet;
240 mInv[ 5 + mInvOffset] = dst5 * invdet;
241 mInv[ 6 + mInvOffset] = dst6 * invdet;
242 mInv[ 7 + mInvOffset] = dst7 * invdet;
244 mInv[ 8 + mInvOffset] = dst8 * invdet;
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Hyperplane.h 183 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/
Hyperplane.h 205 Scalar invdet = Scalar(1) / det; local
206 return VectorType(invdet*(coeffs().coeff(1)*other.coeffs().coeff(2)-other.coeffs().coeff(1)*coeffs().coeff(2)),
207 invdet*(other.coeffs().coeff(0)*coeffs().coeff(2)-coeffs().coeff(0)*other.coeffs().coeff(2)));

Completed in 561 milliseconds