Lines Matching refs:native_log2
1341 extern float __attribute__((overloadable)) native_log2(float v) { in native_log2() function
1363 extern float2 __attribute__((overloadable)) native_log2(float2 v) { in native_log2() function
1364 float2 v2 = {native_log2(v.x), native_log2(v.y)}; in native_log2()
1367 extern float3 __attribute__((overloadable)) native_log2(float3 v) { in native_log2() function
1368 float3 v2 = {native_log2(v.x), native_log2(v.y), native_log2(v.z)}; in native_log2()
1371 extern float4 __attribute__((overloadable)) native_log2(float4 v) { in native_log2() function
1372 float4 v2 = {native_log2(v.x), native_log2(v.y), native_log2(v.z), native_log2(v.w)}; in native_log2()
1377 return native_log2(v) * (1.f / 1.442695041f); in native_log()
1380 return native_log2(v) * (1.f / 1.442695041f); in native_log()
1383 return native_log2(v) * (1.f / 1.442695041f); in native_log()
1386 return native_log2(v) * (1.f / 1.442695041f); in native_log()
1390 return native_log2(v) * (1.f / 3.321928095f); in native_log10()
1393 return native_log2(v) * (1.f / 3.321928095f); in native_log10()
1396 return native_log2(v) * (1.f / 3.321928095f); in native_log10()
1399 return native_log2(v) * (1.f / 3.321928095f); in native_log10()
1404 float v2 = native_log2(v); in native_powr()
1409 float2 v2 = native_log2(v); in native_powr()
1414 float3 v2 = native_log2(v); in native_powr()
1419 float4 v2 = native_log2(v); in native_powr()
2295 HN_FUNC_HN(native_log2);