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

/frameworks/rs/driver/runtime/arch/
H A Dgeneric.c668 * half_rsqrt
671 extern float __attribute__((overloadable)) half_rsqrt(float v) { function
675 extern float2 __attribute__((overloadable)) half_rsqrt(float2 v) { function
677 r.x = half_rsqrt(v.x);
678 r.y = half_rsqrt(v.y);
682 extern float3 __attribute__((overloadable)) half_rsqrt(float3 v) { function
684 r.x = half_rsqrt(v.x);
685 r.y = half_rsqrt(v.y);
686 r.z = half_rsqrt(v.z);
690 extern float4 __attribute__((overloadable)) half_rsqrt(float function
[all...]

Completed in 44 milliseconds