Home | History | Annotate | Download | only in runtime

Lines Matching refs:native_recip

1658 float __attribute__((overloadable)) native_recip(float v) { return 1.f / v;}
1659 float2 __attribute__((overloadable)) native_recip(float2 v) { return ((float2)1.f) / v;}
1660 float3 __attribute__((overloadable)) native_recip(float3 v) { return ((float3)1.f) / v;}
1661 float4 __attribute__((overloadable)) native_recip(float4 v) { return ((float4)1.f) / v;}
2301 HN_FUNC_HN(native_recip);