HomeSort by relevance Sort by last modified time
    Searched defs:half_recip (Results 1 - 2 of 2) sorted by null

  /frameworks/compile/libbcc/lib/Renderscript/runtime/arch/
x86_generic.c 689 * half_RECIP
692 extern float __attribute__((overloadable)) half_recip(float v) { function
697 extern float2 __attribute__((overloadable)) half_recip(float2 v) { function
699 r.x = half_recip(r.x);
700 r.y = half_recip(r.y);
704 extern float3 __attribute__((overloadable)) half_recip(float3 v) { function
706 r.x = half_recip(r.x);
707 r.y = half_recip(r.y);
708 r.z = half_recip(r.z);
712 extern float4 __attribute__((overloadable)) half_recip(float4 v) function
    [all...]
generic.c 746 * half_RECIP
749 extern float __attribute__((overloadable)) half_recip(float v) { function
754 extern float2 __attribute__((overloadable)) half_recip(float2 v) { function
756 r.x = half_recip(r.x);
757 r.y = half_recip(r.y);
761 extern float3 __attribute__((overloadable)) half_recip(float3 v) { function
763 r.x = half_recip(r.x);
764 r.y = half_recip(r.y);
765 r.z = half_recip(r.z);
769 extern float4 __attribute__((overloadable)) half_recip(float4 v) function
    [all...]

Completed in 99 milliseconds