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

/frameworks/rs/driver/runtime/arch/
H A Dgeneric.c679 * half_rsqrt
682 extern float __attribute__((overloadable)) half_rsqrt(float v) { function
686 extern float2 __attribute__((overloadable)) half_rsqrt(float2 v) { function
688 r.x = half_rsqrt(v.x);
689 r.y = half_rsqrt(v.y);
693 extern float3 __attribute__((overloadable)) half_rsqrt(float3 v) { function
695 r.x = half_rsqrt(v.x);
696 r.y = half_rsqrt(v.y);
697 r.z = half_rsqrt(v.z);
701 extern float4 __attribute__((overloadable)) half_rsqrt(float function
[all...]

Completed in 622 milliseconds