Home
last modified time | relevance | path

Searched refs:half_rsqrt (Results 1 – 9 of 9) sorted by relevance

/frameworks/rs/driver/runtime/arch/
Dgeneric.c682 extern float __attribute__((overloadable)) half_rsqrt(float v) { in half_rsqrt() function
686 extern float2 __attribute__((overloadable)) half_rsqrt(float2 v) { in half_rsqrt() function
688 r.x = half_rsqrt(v.x); in half_rsqrt()
689 r.y = half_rsqrt(v.y); in half_rsqrt()
693 extern float3 __attribute__((overloadable)) half_rsqrt(float3 v) { in half_rsqrt() function
695 r.x = half_rsqrt(v.x); in half_rsqrt()
696 r.y = half_rsqrt(v.y); in half_rsqrt()
697 r.z = half_rsqrt(v.z); in half_rsqrt()
701 extern float4 __attribute__((overloadable)) half_rsqrt(float4 v) { in half_rsqrt() function
703 r.x = half_rsqrt(v.x); in half_rsqrt()
[all …]
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Dfisheye_approx.rsh51 const float inv_dist = half_rsqrt(dist2);
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Dfisheye_approx.rsh51 const float inv_dist = half_rsqrt(dist2);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Dfisheye_approx.rsh51 const float inv_dist = half_rsqrt(dist2);
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
Dapitest.rs1061 f = half_rsqrt(f);
1062 f2 = half_rsqrt(f2);
1063 f3 = half_rsqrt(f3);
1064 f4 = half_rsqrt(f4);
/frameworks/rs/driver/runtime/
Drs_cl.c1035 extern float __attribute__((overloadable)) half_rsqrt(float);
1051 float rlength = half_rsqrt(v.x*v.x + v.y*v.y); in fast_normalize()
1055 float rlength = half_rsqrt(v.x*v.x + v.y*v.y + v.z*v.z); in fast_normalize()
1059 float rlength = half_rsqrt(v.x*v.x + v.y*v.y + v.z*v.z + v.w*v.w); in fast_normalize()
/frameworks/rs/java/tests/ComputeBenchmark/src/com/example/android/rs/computebench/
Dcompute_benchmark.rs388 BENCH_FN_FUNC_FN(half_rsqrt);
/frameworks/rs/api/
Drs_core_math.spec1350 name: half_rsqrt
/frameworks/rs/scriptc/
Drs_core_math.rsh5410 extern float __attribute__((const, overloadable))half_rsqrt(float v);
5419 extern float2 __attribute__((const, overloadable))half_rsqrt(float2 v);
5428 extern float3 __attribute__((const, overloadable))half_rsqrt(float3 v);
5437 extern float4 __attribute__((const, overloadable))half_rsqrt(float4 v);