Searched defs:half_rsqrt (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/libbcc/lib/Renderscript/runtime/arch/
H A Dx86_generic.c756 * half_rsqrt
759 extern float __attribute__((overloadable)) half_rsqrt(float v) { function
763 extern float2 __attribute__((overloadable)) half_rsqrt(float2 v) { function
765 r.x = half_rsqrt(v.x);
766 r.y = half_rsqrt(v.y);
770 extern float3 __attribute__((overloadable)) half_rsqrt(float3 v) { function
772 r.x = half_rsqrt(v.x);
773 r.y = half_rsqrt(v.y);
774 r.z = half_rsqrt(v.z);
778 extern float4 __attribute__((overloadable)) half_rsqrt(float function
[all...]
H A Dgeneric.c813 * half_rsqrt
816 extern float __attribute__((overloadable)) half_rsqrt(float v) { function
820 extern float2 __attribute__((overloadable)) half_rsqrt(float2 v) { function
822 r.x = half_rsqrt(v.x);
823 r.y = half_rsqrt(v.y);
827 extern float3 __attribute__((overloadable)) half_rsqrt(float3 v) { function
829 r.x = half_rsqrt(v.x);
830 r.y = half_rsqrt(v.y);
831 r.z = half_rsqrt(v.z);
835 extern float4 __attribute__((overloadable)) half_rsqrt(float function
[all...]

Completed in 50 milliseconds