Home
last modified time | relevance | path

Searched refs:native_log2 (Results 1 – 4 of 4) sorted by relevance

/frameworks/rs/driver/runtime/
Drs_cl.c1184 extern float __attribute__((overloadable)) native_log2(float v) { in native_log2() function
1206 extern float2 __attribute__((overloadable)) native_log2(float2 v) { in native_log2() function
1207 float2 v2 = {native_log2(v.x), native_log2(v.y)}; in native_log2()
1210 extern float3 __attribute__((overloadable)) native_log2(float3 v) { in native_log2() function
1211 float3 v2 = {native_log2(v.x), native_log2(v.y), native_log2(v.z)}; in native_log2()
1214 extern float4 __attribute__((overloadable)) native_log2(float4 v) { in native_log2() function
1215 float4 v2 = {native_log2(v.x), native_log2(v.y), native_log2(v.z), native_log2(v.w)}; in native_log2()
1220 return native_log2(v) * (1.f / 1.442695041f); in native_log()
1223 return native_log2(v) * (1.f / 1.442695041f); in native_log()
1226 return native_log2(v) * (1.f / 1.442695041f); in native_log()
[all …]
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
Dapitest.rs1096 f = native_log2(f);
1097 f2 = native_log2(f2);
1098 f3 = native_log2(f3);
1099 f4 = native_log2(f4);
/frameworks/rs/api/
Drs_core_math.spec1453 name: native_log2
/frameworks/rs/scriptc/
Drs_core_math.rsh8375 extern float __attribute__((const, overloadable))native_log2(float v);
8385 extern float2 __attribute__((const, overloadable))native_log2(float2 v);
8395 extern float3 __attribute__((const, overloadable))native_log2(float3 v);
8405 extern float4 __attribute__((const, overloadable))native_log2(float4 v);