Lines Matching refs:half_rsqrt
671 extern float __attribute__((overloadable)) half_rsqrt(float v) { in half_rsqrt() function
675 extern float2 __attribute__((overloadable)) half_rsqrt(float2 v) { in half_rsqrt() function
677 r.x = half_rsqrt(v.x); in half_rsqrt()
678 r.y = half_rsqrt(v.y); in half_rsqrt()
682 extern float3 __attribute__((overloadable)) half_rsqrt(float3 v) { in half_rsqrt() function
684 r.x = half_rsqrt(v.x); in half_rsqrt()
685 r.y = half_rsqrt(v.y); in half_rsqrt()
686 r.z = half_rsqrt(v.z); in half_rsqrt()
690 extern float4 __attribute__((overloadable)) half_rsqrt(float4 v) { in half_rsqrt() function
692 r.x = half_rsqrt(v.x); in half_rsqrt()
693 r.y = half_rsqrt(v.y); in half_rsqrt()
694 r.z = half_rsqrt(v.z); in half_rsqrt()
695 r.w = half_rsqrt(v.w); in half_rsqrt()