HomeSort by relevance Sort by last modified time
    Searched defs:dot3 (Results 1 - 8 of 8) 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/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/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...]
  /external/swiftshader/src/Shader/
ShaderCore.cpp 497 Float4 dot3(const Vector4f &v0, const Vector4f &v1) function in namespace:sw
880 dst = Sqrt(dot3(src, src));
906 Float4 dot3 = dx * dx + dy * dy + dz * dz; local
907 dst = Sqrt(dot3);
952 Float4 dot = dot3(src0, src1);
    [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 1263 milliseconds