OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:recipLen
(Results
1 - 11
of
11
) sorted by null
/frameworks/rs/driver/runtime/
rs_quaternion.c
88
const float
recipLen
= 1.f / sqrt(len);
89
x *=
recipLen
;
90
y *=
recipLen
;
91
z *=
recipLen
;
100
const float
recipLen
= 1.f / sqrt(len);
101
q->w *=
recipLen
;
102
q->x *=
recipLen
;
103
q->y *=
recipLen
;
104
q->z *=
recipLen
;
/cts/tests/openglperf2/jni/graphics/
Matrix.cpp
291
float
recipLen
= 1.0f / len;
292
x *=
recipLen
;
293
y *=
recipLen
;
294
z *=
recipLen
;
/frameworks/base/libs/hwui/
Matrix.cpp
346
float
recipLen
= 1.0f / length;
347
x *=
recipLen
;
348
y *=
recipLen
;
349
z *=
recipLen
;
/frameworks/base/rs/java/android/renderscript/
Matrix3f.java
121
float
recipLen
= 1.f / len;
122
x *=
recipLen
;
123
y *=
recipLen
;
124
z *=
recipLen
;
Matrix4f.java
166
float
recipLen
= 1.f / len;
167
x *=
recipLen
;
168
y *=
recipLen
;
169
z *=
recipLen
;
/frameworks/rs/
rsMatrix4x4.cpp
215
const float
recipLen
= 1.f / sqrtf(len);
216
x *=
recipLen
;
217
y *=
recipLen
;
218
z *=
recipLen
;
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix3f.java
124
float
recipLen
= 1.f / len;
125
x *=
recipLen
;
126
y *=
recipLen
;
127
z *=
recipLen
;
Matrix4f.java
167
float
recipLen
= 1.f / len;
168
x *=
recipLen
;
169
y *=
recipLen
;
170
z *=
recipLen
;
/frameworks/base/opengl/java/android/opengl/
Matrix.java
613
float
recipLen
= 1.0f / len;
614
x *=
recipLen
;
615
y *=
recipLen
;
616
z *=
recipLen
;
/frameworks/native/opengl/libagl/
matrix.cpp
361
const GLfloat
recipLen
= reciprocalf(len);
362
x *=
recipLen
;
363
y *=
recipLen
;
364
z *=
recipLen
;
/prebuilts/sdk/renderscript/lib/
javalib.jar
Completed in 283 milliseconds