/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pipe_offset.c | 69 float inv_det = 1.0f / header->det; local 89 float dzdx = fabsf(a * inv_det); 90 float dzdy = fabsf(b * inv_det);
|
/external/libgdx/gdx/jni/ |
com.badlogic.gdx.math.Matrix4.cpp | 96 float inv_det = 1.0f / l_det; local 97 val[M00] = tmp[M00] * inv_det; 98 val[M01] = tmp[M01] * inv_det; 99 val[M02] = tmp[M02] * inv_det; 100 val[M03] = tmp[M03] * inv_det; 101 val[M10] = tmp[M10] * inv_det; 102 val[M11] = tmp[M11] * inv_det; 103 val[M12] = tmp[M12] * inv_det; 104 val[M13] = tmp[M13] * inv_det; 105 val[M20] = tmp[M20] * inv_det; [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_sf.h | 83 struct brw_reg inv_det; member in struct:brw_sf_compile
|
brw_sf_emit.c | 274 c->inv_det = brw_vec1_grf(reg, 0); reg++; 315 c->inv_det, 457 brw_MUL(p, c->m1Cx, c->tmp, c->inv_det); 463 brw_MUL(p, c->m2Cy, c->tmp, c->inv_det); 534 brw_MUL(p, c->m1Cx, c->tmp, c->inv_det); 537 brw_MUL(p, c->m2Cy, c->tmp, c->inv_det);
|
/external/opencv/cv/src/ |
cvposit.cpp | 297 float inv_det; local 310 inv_det = 1 / det; 319 b[k] = (p00 * a0 + p01 * a1 + p02 * a2) * inv_det; 320 b[n + k] = (p01 * a0 + p11 * a1 + p12 * a2) * inv_det; 321 b[2 * n + k] = (p02 * a0 + p12 * a1 + p22 * a2) * inv_det;
|
/external/opencv3/modules/calib3d/src/ |
posit.cpp | 311 const float inv_det = 1 / det; local 320 b[k] = (p00 * a0 + p01 * a1 + p02 * a2) * inv_det; 321 b[n + k] = (p01 * a0 + p11 * a1 + p12 * a2) * inv_det; 322 b[2 * n + k] = (p02 * a0 + p12 * a1 + p22 * a2) * inv_det;
|
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/ |
PnPProblem.cpp | 267 double det, inv_det, u, v; local 289 inv_det = 1.f / det; 295 u = DOT(T, P) * inv_det; 304 v = DOT(D, Q) * inv_det; 309 t = DOT(e2, Q) * inv_det;
|
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
Matrix3.java | 292 float inv_det = 1.0f / det;
local 305 val[M00] = inv_det * tmp[M00];
306 val[M10] = inv_det * tmp[M10];
307 val[M20] = inv_det * tmp[M20];
308 val[M01] = inv_det * tmp[M01];
309 val[M11] = inv_det * tmp[M11];
310 val[M21] = inv_det * tmp[M21];
311 val[M02] = inv_det * tmp[M02];
312 val[M12] = inv_det * tmp[M12];
313 val[M22] = inv_det * tmp[M22]; [all...] |
Matrix4.java | 398 float inv_det = 1.0f / l_det;
local 431 val[M00] = tmp[M00] * inv_det;
432 val[M01] = tmp[M01] * inv_det;
433 val[M02] = tmp[M02] * inv_det;
434 val[M03] = tmp[M03] * inv_det;
435 val[M10] = tmp[M10] * inv_det;
436 val[M11] = tmp[M11] * inv_det;
437 val[M12] = tmp[M12] * inv_det;
438 val[M13] = tmp[M13] * inv_det;
439 val[M20] = tmp[M20] * inv_det;
[all...] |
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/math/ |
Matrix4.java | 476 float inv_det = 1.0f / l_det;
local 509 val[M00] = tmp[M00] * inv_det;
510 val[M01] = tmp[M01] * inv_det;
511 val[M02] = tmp[M02] * inv_det;
512 val[M03] = tmp[M03] * inv_det;
513 val[M10] = tmp[M10] * inv_det;
514 val[M11] = tmp[M11] * inv_det;
515 val[M12] = tmp[M12] * inv_det;
516 val[M13] = tmp[M13] * inv_det;
517 val[M20] = tmp[M20] * inv_det;
1309 float inv_det = 1.0f \/ l_det; local [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_state_setup.c | 240 LLVMValueRef inv_det, 283 /* dzdx = fabsf(res1 * inv_det), dydx = fabsf(res2 * inv_det)*/ 285 dzdxdzdy = LLVMBuildFMul(b, res12, inv_det, "dzdxdzdy");
|