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

  /frameworks/rs/scriptc/
rs_quaternion.rsh 114 const float recipLen = 1.f / sqrt(len);
115 x *= recipLen;
116 y *= recipLen;
117 z *= recipLen;
152 const float recipLen = 1.f / sqrt(len);
153 rsQuaternionMultiply(q, recipLen);
  /prebuilts/sdk/renderscript/include/
rs_quaternion.rsh 114 const float recipLen = 1.f / sqrt(len);
115 x *= recipLen;
116 y *= recipLen;
117 z *= recipLen;
152 const float recipLen = 1.f / sqrt(len);
153 rsQuaternionMultiply(q, recipLen);
  /frameworks/base/graphics/java/android/renderscript/
Matrix3f.java 124 float recipLen = 1.f / len;
125 x *= recipLen;
126 y *= recipLen;
127 z *= recipLen;
Matrix4f.java 139 float recipLen = 1.f / len;
140 x *= recipLen;
141 y *= recipLen;
142 z *= recipLen;
  /frameworks/rs/
rsMatrix4x4.cpp 215 const float recipLen = 1.f / sqrtf(len);
216 x *= recipLen;
217 y *= recipLen;
218 z *= recipLen;
  /frameworks/base/libs/hwui/
Matrix.cpp 232 float recipLen = 1.0f / length;
233 x *= recipLen;
234 y *= recipLen;
235 z *= recipLen;
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 587 float recipLen = 1.0f / len;
588 x *= recipLen;
589 y *= recipLen;
590 z *= recipLen;
  /external/quake/quake/src/WinQuake/
gl_rmain.cpp 1123 float recipLen = 1.0f / len;
1124 x *= recipLen;
1125 y *= recipLen;
1126 z *= recipLen;
    [all...]
  /gdk/samples/quake/jni/
gl_rmain.cpp 1123 float recipLen = 1.0f / len;
1124 x *= recipLen;
1125 y *= recipLen;
1126 z *= recipLen;
    [all...]
  /frameworks/native/opengl/libagl/
matrix.cpp 361 const GLfloat recipLen = reciprocalf(len);
362 x *= recipLen;
363 y *= recipLen;
364 z *= recipLen;

Completed in 278 milliseconds