Searched defs:recipLen (Results 1 - 4 of 4) 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/
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.cpp351 float recipLen = 1.0f / length; local
352 x *= recipLen;
353 y *= recipLen;
354 z *= recipLen;
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp360 const GLfloat recipLen = reciprocalf(len); local
361 x *= recipLen;
362 y *= recipLen;
363 z *= recipLen;

Completed in 75 milliseconds