Searched refs:maxSteps (Results 1 – 8 of 8) sorted by relevance
/external/deqp/framework/randomshaders/ |
D | rsgUtils.cpp | 222 const int maxSteps = 320; in computeRandomValueRange() local 225 int rangeLen = rnd.getInt(0, maxSteps); in computeRandomValueRange() 226 int minStep = rnd.getInt(0, maxSteps-rangeLen); in computeRandomValueRange()
|
D | rsgExpression.cpp | 203 const int maxSteps = 320; in computeRandomValueRangeForInfElements() local 206 int rangeLen = rnd.getInt(0, maxSteps); in computeRandomValueRangeForInfElements() 207 int minStep = rnd.getInt(0, maxSteps-rangeLen); in computeRandomValueRangeForInfElements()
|
/external/jmonkeyengine/engine/src/bullet-native/ |
D | jmePhysicsSpace.cpp | 65 void jmePhysicsSpace::stepSimulation(jfloat tpf, jint maxSteps, jfloat accuracy) { in stepSimulation() argument 66 dynamicsWorld->stepSimulation(tpf, maxSteps, accuracy); in stepSimulation()
|
D | com_jme3_bullet_PhysicsSpace.cpp | 67 (JNIEnv * env, jobject object, jlong spaceId, jfloat tpf, jint maxSteps, jfloat accuracy) { in Java_com_jme3_bullet_PhysicsSpace_stepSimulation() argument 74 space->stepSimulation(tpf, maxSteps, accuracy); in Java_com_jme3_bullet_PhysicsSpace_stepSimulation()
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/ |
D | PhysicsSpace.java | 343 public void update(float time, int maxSteps) { in update() argument 348 stepSimulation(physicsSpaceId, time, maxSteps, accuracy); in update() 351 private native void stepSimulation(long space, float time, int maxSteps, float accuracy); in stepSimulation() argument
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/ |
D | PhysicsSpace.java | 319 public void update(float time, int maxSteps) { in update() argument 324 dynamicsWorld.stepSimulation(time, maxSteps, accuracy); in update()
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/ |
D | btMatrix3x3.h | 660 void diagonalize(btMatrix3x3& rot, btScalar threshold, int maxSteps) in ATTRIBUTE_ALIGNED16() 663 for (int step = maxSteps; step > 0; step--) in ATTRIBUTE_ALIGNED16()
|
/external/deqp/framework/common/ |
D | tcuTexLookupVerifier.cpp | 144 const int maxSteps = 1<<16; in computeBilinearSearchStepFromFloatLine() local 148 const float step = de::max(minComp(minStep), 1.0f / float(maxSteps)); in computeBilinearSearchStepFromFloatLine() 158 const int maxSteps = 1<<16; in computeBilinearSearchStepFromFloatQuad() local 166 const float step = de::max(minComp(minStep), 1.0f / float(maxSteps)); in computeBilinearSearchStepFromFloatQuad()
|