Searched refs:half_rsqrt (Results 1 – 9 of 9) sorted by relevance
682 extern float __attribute__((overloadable)) half_rsqrt(float v) { in half_rsqrt() function686 extern float2 __attribute__((overloadable)) half_rsqrt(float2 v) { in half_rsqrt() function688 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() function695 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() function703 r.x = half_rsqrt(v.x); in half_rsqrt()[all …]
51 const float inv_dist = half_rsqrt(dist2);
1061 f = half_rsqrt(f);1062 f2 = half_rsqrt(f2);1063 f3 = half_rsqrt(f3);1064 f4 = half_rsqrt(f4);
1035 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()
388 BENCH_FN_FUNC_FN(half_rsqrt);
1350 name: half_rsqrt
5410 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);