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

  /frameworks/native/opengl/libagl/
matrix.h 390 GLfixed dot3(const GLfixed* a, const GLfixed* b) function in namespace:android
  /external/chromium_org/native_client_sdk/src/examples/demo/earth_simd/
earth.cc 93 INLINE float dot3(f32x4_t a, f32x4_t b) { function in namespace:__anon12926
502 float Lq = 1.0f / inline_quick_sqrt(dot3(L, L));
504 float d = dot3(L, normal);
506 float ds = -dot3(normal, planet_pole);
509 float dp = dot3(planet_equator, normal);
514 float dps = dot3(planet_pole_x_equator, normal);
  /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...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 315 static inline float dot3(float x0, float y0, float z0, float x1, float y1, float z1) { function in namespace:android
320 return dot3(pPlane[0], pPlane[1], pPlane[2], x, y, z) + pPlane[3];
  /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...]

Completed in 525 milliseconds