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

/frameworks/rs/driver/runtime/
H A Drs_quaternion.c88 const float recipLen = 1.f / sqrt(len); local
89 x *= recipLen;
90 y *= recipLen;
91 z *= recipLen;
100 const float recipLen = 1.f / sqrt(len); local
101 q->w *= recipLen;
102 q->x *= recipLen;
103 q->y *= recipLen;
104 q->z *= recipLen;
/frameworks/rs/scriptc/
H A Drs_quaternion.rsh193 const float recipLen = 1.f / sqrt(len);
194 x *= recipLen;
195 y *= recipLen;
196 z *= recipLen;
215 const float recipLen = 1.f / sqrt(len);
216 q->w *= recipLen;
217 q->x *= recipLen;
218 q->y *= recipLen;
219 q->z *= recipLen;
/frameworks/base/rs/java/android/renderscript/
H A DMatrix3f.java121 float recipLen = 1.f / len;
122 x *= recipLen;
123 y *= recipLen;
124 z *= recipLen;
H A DMatrix4f.java166 float recipLen = 1.f / len;
167 x *= recipLen;
168 y *= recipLen;
169 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.cpp346 float recipLen = 1.0f / length; local
347 x *= recipLen;
348 y *= recipLen;
349 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 443 milliseconds