Searched refs:recipLen (Results 1 - 9 of 9) sorted by relevance

/frameworks/rs/scriptc/
H A Drs_quaternion.rsh114 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/
H A DMatrix3f.java124 float recipLen = 1.f / len;
125 x *= recipLen;
126 y *= recipLen;
127 z *= recipLen;
H A DMatrix4f.java167 float recipLen = 1.f / len;
168 x *= recipLen;
169 y *= recipLen;
170 z *= recipLen;
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DMatrix3f.java124 float recipLen = 1.f / len;
125 x *= recipLen;
126 y *= recipLen;
127 z *= recipLen;
H A DMatrix4f.java167 float recipLen = 1.f / len;
168 x *= recipLen;
169 y *= recipLen;
170 z *= recipLen;
/frameworks/rs/
H A DrsMatrix4x4.cpp215 const float recipLen = 1.f / sqrtf(len); local
216 x *= recipLen;
217 y *= recipLen;
218 z *= recipLen;
/frameworks/base/libs/hwui/
H A DMatrix.cpp322 float recipLen = 1.0f / length; local
323 x *= recipLen;
324 y *= recipLen;
325 z *= recipLen;
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java613 float recipLen = 1.0f / len;
614 x *= recipLen;
615 y *= recipLen;
616 z *= recipLen;
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp361 const GLfloat recipLen = reciprocalf(len); local
362 x *= recipLen;
363 y *= recipLen;
364 z *= recipLen;

Completed in 2026 milliseconds