• Home
  • Raw
  • Download

Lines Matching defs:v2

380 float __attribute__((overloadable)) atan2(float v1, float v2) {  in atan2()
415 float __attribute__((overloadable)) copysign(float v1, float v2) { in copysign()
481 float __attribute__((overloadable)) fdim(float v1, float v2) { in fdim()
493 float __attribute__((overloadable)) fma(float v1, float v2, float v3) { in fma()
501 float __attribute__((overloadable)) fmod(float v1, float v2) { in fmod()
522 float __attribute__((overloadable)) frexp(float v1, int* v2) { in frexp()
528 float __attribute__((overloadable)) hypot(float v1, float v2) { in hypot()
540 float __attribute__((overloadable)) ldexp(float v1, int v2) { in ldexp()
601 float __attribute__((overloadable)) modf(float v1, float *v2) { in modf()
614 float __attribute__((overloadable)) nextafter(float v1, float v2) { in nextafter()
624 float __attribute__((overloadable)) pow(float v1, float v2) { in pow()
656 float __attribute__((overloadable)) remainder(float v1, float v2) { in remainder()
662 float __attribute__((overloadable)) remquo(float v1, float v2, int *v3) { in remquo()
1361 float2 v2 = {native_log2(v.x), native_log2(v.y)}; in native_log2() local
1365 float3 v2 = {native_log2(v.x), native_log2(v.y), native_log2(v.z)}; in native_log2() local
1369 float4 v2 = {native_log2(v.x), native_log2(v.y), native_log2(v.z), native_log2(v.w)}; in native_log2() local
1401 float v2 = native_log2(v); in native_powr() local
1406 float2 v2 = native_log2(v); in native_powr() local
1411 float3 v2 = native_log2(v); in native_powr() local
1416 float4 v2 = native_log2(v); in native_powr() local
1421 extern double __attribute__((overloadable)) min(double v1, double v2) { in min()
1425 extern double2 __attribute__((overloadable)) min(double2 v1, double2 v2) { in min()
1432 extern double3 __attribute__((overloadable)) min(double3 v1, double3 v2) { in min()
1440 extern double4 __attribute__((overloadable)) min(double4 v1, double4 v2) { in min()
1449 extern long __attribute__((overloadable)) min(long v1, long v2) { in min()
1452 extern long2 __attribute__((overloadable)) min(long2 v1, long2 v2) { in min()
1458 extern long3 __attribute__((overloadable)) min(long3 v1, long3 v2) { in min()
1465 extern long4 __attribute__((overloadable)) min(long4 v1, long4 v2) { in min()
1474 extern ulong __attribute__((overloadable)) min(ulong v1, ulong v2) { in min()
1477 extern ulong2 __attribute__((overloadable)) min(ulong2 v1, ulong2 v2) { in min()
1483 extern ulong3 __attribute__((overloadable)) min(ulong3 v1, ulong3 v2) { in min()
1490 extern ulong4 __attribute__((overloadable)) min(ulong4 v1, ulong4 v2) { in min()
1499 extern double __attribute__((overloadable)) max(double v1, double v2) { in max()
1503 extern double2 __attribute__((overloadable)) max(double2 v1, double2 v2) { in max()
1510 extern double3 __attribute__((overloadable)) max(double3 v1, double3 v2) { in max()
1518 extern double4 __attribute__((overloadable)) max(double4 v1, double4 v2) { in max()
1527 extern long __attribute__((overloadable)) max(long v1, long v2) { in max()
1530 extern long2 __attribute__((overloadable)) max(long2 v1, long2 v2) { in max()
1536 extern long3 __attribute__((overloadable)) max(long3 v1, long3 v2) { in max()
1543 extern long4 __attribute__((overloadable)) max(long4 v1, long4 v2) { in max()
1552 extern ulong __attribute__((overloadable)) max(ulong v1, ulong v2) { in max()
1555 extern ulong2 __attribute__((overloadable)) max(ulong2 v1, ulong2 v2) { in max()
1561 extern ulong3 __attribute__((overloadable)) max(ulong3 v1, ulong3 v2) { in max()
1568 extern ulong4 __attribute__((overloadable)) max(ulong4 v1, ulong4 v2) { in max()
1640 float __attribute__((overloadable)) native_distance(float v1, float v2) { return fast_distance(v1, … in native_distance()
1641 float __attribute__((overloadable)) native_distance(float2 v1, float2 v2) { return fast_distance(v1… in native_distance()
1642 float __attribute__((overloadable)) native_distance(float3 v1, float3 v2) { return fast_distance(v1… in native_distance()
1643 float __attribute__((overloadable)) native_distance(float4 v1, float4 v2) { return fast_distance(v1… in native_distance()
1650 float __attribute__((overloadable)) native_divide(float v1, float v2) { return v1 / v2;} in native_divide()
1651 float2 __attribute__((overloadable)) native_divide(float2 v1, float2 v2) { return v1 / v2;} in native_divide()
1652 float3 __attribute__((overloadable)) native_divide(float3 v1, float3 v2) { return v1 / v2;} in native_divide()
1653 float4 __attribute__((overloadable)) native_divide(float4 v1, float4 v2) { return v1 / v2;} in native_divide()