HomeSort by relevance Sort by last modified time
    Searched defs:dot3 (Results 1 - 10 of 10) sorted by null

  /frameworks/native/opengl/libagl/
matrix.h 390 GLfixed dot3(const GLfixed* a, const GLfixed* b) function in namespace:android
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DormandPrince54StepInterpolator.java 204 final double dot3 = theta * (2 - 3 * theta); local
209 interpolatedDerivatives[i] = v1[i] + dot2 * v2[i] + dot3 * v3[i] + dot4 * v4[i];
GraggBulirschStoerStepInterpolator.java 323 final double dot3 = ((3 * theta - 4) * theta + 1) / h; local
332 interpolatedDerivatives[i] = dot1 * p1 + dot2 * p2 + dot3 * p3;
DormandPrince853StepInterpolator.java 365 final double dot3 = twoTheta * (1 + theta * (twoTheta -3)); local
380 dot3 * v[3][i] + dot4 * v[4][i] +
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
btVector3.java 260 public Vector3 dot3(Vector3 v0, Vector3 v1, Vector3 v2) { method in class:btVector3
  /external/deqp/modules/gles2/functional/
es2fMultisampleTests.cpp 105 int dot3 = (point.x()-p3.x()) * (p0.y()-p3.y()) + (point.y()-p3.y()) * (p3.x()-p0.x()); local
107 return (dot0 > 0) == (dot1 > 0) && (dot1 > 0) == (dot2 > 0) && (dot2 > 0) == (dot3 > 0);
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
btMprPenetration.h 270 float dot1, dot2, dot3; local
281 dot3 = dv4 - dv3;
284 dot1 = BT_MPR_FMIN(dot1, dot3);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btVector3.h 719 SIMD_FORCE_INLINE btVector3 dot3( const btVector3 &v0, const btVector3 &v1, const btVector3 &v2 ) const function
    [all...]
  /external/deqp/modules/gles3/functional/
es3fMultisampleTests.cpp 107 int dot3 = (point.x()-p3.x()) * (p0.y()-p3.y()) + (point.y()-p3.y()) * (p3.x()-p0.x()); local
109 return (dot0 > 0) == (dot1 > 0) && (dot1 > 0) == (dot2 > 0) && (dot2 > 0) == (dot3 > 0);
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 410 static inline float dot3(float x0, float y0, float z0, float x1, float y1, float z1) { function in namespace:android
415 return dot3(pPlane[0], pPlane[1], pPlane[2], x, y, z) + pPlane[3];
    [all...]

Completed in 606 milliseconds