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

  /external/vulkan-validation-layers/demos/
linmath.h 292 float idet = 1.0f / (s[0] * c[5] - s[1] * c[4] + s[2] * c[3] + s[3] * c[2] -
295 T[0][0] = (M[1][1] * c[5] - M[1][2] * c[4] + M[1][3] * c[3]) * idet;
296 T[0][1] = (-M[0][1] * c[5] + M[0][2] * c[4] - M[0][3] * c[3]) * idet;
297 T[0][2] = (M[3][1] * s[5] - M[3][2] * s[4] + M[3][3] * s[3]) * idet;
298 T[0][3] = (-M[2][1] * s[5] + M[2][2] * s[4] - M[2][3] * s[3]) * idet;
300 T[1][0] = (-M[1][0] * c[5] + M[1][2] * c[2] - M[1][3] * c[1]) * idet;
301 T[1][1] = (M[0][0] * c[5] - M[0][2] * c[2] + M[0][3] * c[1]) * idet;
302 T[1][2] = (-M[3][0] * s[5] + M[3][2] * s[2] - M[3][3] * s[1]) * idet;
303 T[1][3] = (M[2][0] * s[5] - M[2][2] * s[2] + M[2][3] * s[1]) * idet;
305 T[2][0] = (M[1][0] * c[4] - M[1][1] * c[2] + M[1][3] * c[0]) * idet;
    [all...]
  /frameworks/native/services/surfaceflinger/
Transform.cpp 325 const float idet = 1.0 / (a*d - b*c); local
326 result.mMatrix[0][0] = d*idet;
327 result.mMatrix[0][1] = -c*idet;
328 result.mMatrix[1][0] = -b*idet;
329 result.mMatrix[1][1] = a*idet;
  /external/opencv3/modules/imgproc/src/
rotcalipers.cpp 317 float idet = 1.f / (A1 * B2 - A2 * B1); local
319 float px = (C1 * B2 - C2 * B1) * idet;
320 float py = (A1 * C2 - A2 * C1) * idet;
  /external/opencv/cv/src/
cvrotcalipers.cpp 320 float idet = 1.f / (A1 * B2 - A2 * B1); local
322 float px = (C1 * B2 - C2 * B1) * idet;
323 float py = (A1 * C2 - A2 * C1) * idet;
cvshapedescr.cpp 790 double x0, y0, idet, scale, offx = 0, offy = 0; local
907 idet = a * c - b * b * 0.25;
908 idet = idet > DBL_EPSILON ? 1./idet : 0;
911 scale = sqrt( 0.25 * idet );
    [all...]
  /external/opencv3/modules/video/src/
optflowgf.cpp 390 double idet = 1./(g11_*g22_ - g12_*g12_+1e-3); local
392 flow[x*2] = (float)((g11_*h2_-g12_*h1_)*idet);
393 flow[x*2+1] = (float)((g22_*h1_-g12_*h2_)*idet);
569 double idet = 1./(g11*g22 - g12*g12 + 1e-3); local
571 flow[x*2] = (float)((g11*h2-g12*h1)*idet);
572 flow[x*2+1] = (float)((g22*h1-g12*h2)*idet);
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSoftBody.cpp 2373 const btScalar idet=Clamp<btScalar>( 1\/pose.m_scl.determinant(), local
    [all...]

Completed in 465 milliseconds