Home
last modified time | relevance | path

Searched refs:native_recip (Results 1 – 3 of 3) sorted by relevance

/frameworks/rs/driver/runtime/
Drs_cl.c1501 float __attribute__((overloadable)) native_recip(float v) { return 1.f / v;} in native_recip() function
1502 float2 __attribute__((overloadable)) native_recip(float2 v) { return ((float2)1.f) / v;} in native_recip() function
1503 float3 __attribute__((overloadable)) native_recip(float3 v) { return ((float3)1.f) / v;} in native_recip() function
1504 float4 __attribute__((overloadable)) native_recip(float4 v) { return ((float4)1.f) / v;} in native_recip() function
/frameworks/rs/api/
Drs_core_math.spec1768 name: native_recip
/frameworks/rs/scriptc/
Drs_core_math.rsh8498 extern float __attribute__((const, overloadable))native_recip(float v);
8507 extern float2 __attribute__((const, overloadable))native_recip(float2 v);
8516 extern float3 __attribute__((const, overloadable))native_recip(float3 v);
8525 extern float4 __attribute__((const, overloadable))native_recip(float4 v);