OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rlf
(Results
1 - 6
of
6
) sorted by null
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
MathsUtils.java
98
float
rlf
= 1.0f / Matrix.length(zAxisX, zAxisY, zAxisZ);
local
99
zAxisX *=
rlf
;
100
zAxisY *=
rlf
;
101
zAxisZ *=
rlf
;
/frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp
36
float
rlf
= 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
local
37
fx *=
rlf
;
38
fy *=
rlf
;
39
fz *=
rlf
;
/frameworks/native/opengl/tests/tritex/
tritex.cpp
47
float
rlf
= 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
local
48
fx *=
rlf
;
49
fy *=
rlf
;
50
fz *=
rlf
;
/frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp
50
float
rlf
= 1.0f / sqrtf(fx*fx + fy*fy + fz*fz);
local
51
fx *=
rlf
;
52
fy *=
rlf
;
53
fz *=
rlf
;
/cts/tests/openglperf2/jni/graphics/
Matrix.cpp
144
float
rlf
= 1.0f / (float) sqrt(fx * fx + fy * fy + fz * fz);
local
145
fx *=
rlf
;
146
fy *=
rlf
;
147
fz *=
rlf
;
/frameworks/base/opengl/java/android/opengl/
Matrix.java
710
float
rlf
= 1.0f / Matrix.length(fx, fy, fz);
local
711
fx *=
rlf
;
712
fy *=
rlf
;
713
fz *=
rlf
;
Completed in 198 milliseconds