OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:invm
(Results
1 - 17
of
17
) sorted by null
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Joints/
b2WeldJoint.cpp
109
float32
invM
= iA + iB;
110
float32 m =
invM
> 0.0f ? 1.0f /
invM
: 0.0f;
129
invM
+= m_gamma;
130
m_mass.ez.z =
invM
!= 0.0f ? 1.0f /
invM
: 0.0f;
b2GearJoint.cpp
29
// K = J *
invM
* JT
36
// K = J *
invM
* JT = invI
42
// K = J *
invM
* JT = invMass + invI * cross(r, ug)^2
b2PrismaticJoint.cpp
35
// K = J *
invM
* JT
66
// v2 = v1 +
invM
* JT * df
67
// J * (v1 +
invM
* JT * df) = bias
69
// K = J *
invM
* JT
b2DistanceJoint.cpp
35
// K = J *
invM
* JT
b2RopeJoint.cpp
29
// K = J *
invM
* JT
b2PulleyJoint.cpp
32
// K = J *
invM
* JT
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/joints/
WeldJoint.java
205
float
invM
= iA + iB;
206
float m =
invM
> 0.0f ? 1.0f /
invM
: 0.0f;
225
invM
+= m_gamma;
226
m_mass.ez.z =
invM
!= 0.0f ? 1.0f /
invM
: 0.0f;
PrismaticJoint.java
49
//K = J *
invM
* JT
80
//v2 = v1 +
invM
* JT * df
81
//J * (v1 +
invM
* JT * df) = bias
83
//K = J *
invM
* JT
GearJoint.java
41
//K = J *
invM
* JT
48
//K = J *
invM
* JT = invI
54
//K = J *
invM
* JT = invMass + invI * cross(r, ug)^2
DistanceJoint.java
60
//K = J *
invM
* JT
/external/v8/src/base/platform/
platform-linux.cc
313
CHECK(
InVM
(address, size));
319
CHECK(
InVM
(address, size));
325
CHECK(
InVM
(address, OS::CommitPageSize()));
platform.h
333
CHECK(
InVM
(address, size));
365
bool
InVM
(void* address, size_t size) {
/development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java
172
final float
invm
= 1.0f / m;
local
173
final float ax = gx *
invm
;
174
final float ay = gy *
invm
;
/external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h
66
RealScalar absNew = numext::real(residual.dot(p)); // the square of the absolute value of r scaled by
invM
/external/opencv3/modules/features2d/src/
evaluation.cpp
173
Mat_<double>
invM
; invert(getSecondMomentsMatrix(),
invM
);
175
Mat_<double> dstM; invert(Aff*
invM
*Aff.t(), dstM);
/external/skia/src/gpu/
GrDrawContext.cpp
281
SkMatrix
invM
;
282
if (!viewMatrix.invert(&
invM
)) {
287
invM
.mapRectToQuad(srcSpaceRTQuad, rtRect);
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/MLCPSolvers/
btMLCPSolver.cpp
335
//compute JinvM = J*
invM
.
Completed in 285 milliseconds