• Home
  • Raw
  • Download

Lines Matching defs:v1

1267 extern double __attribute__((overloadable)) min(double v1, double v2) {  in min()
1271 extern double2 __attribute__((overloadable)) min(double2 v1, double2 v2) { in min()
1278 extern double3 __attribute__((overloadable)) min(double3 v1, double3 v2) { in min()
1286 extern double4 __attribute__((overloadable)) min(double4 v1, double4 v2) { in min()
1295 extern long __attribute__((overloadable)) min(long v1, long v2) { in min()
1298 extern long2 __attribute__((overloadable)) min(long2 v1, long2 v2) { in min()
1304 extern long3 __attribute__((overloadable)) min(long3 v1, long3 v2) { in min()
1311 extern long4 __attribute__((overloadable)) min(long4 v1, long4 v2) { in min()
1320 extern ulong __attribute__((overloadable)) min(ulong v1, ulong v2) { in min()
1323 extern ulong2 __attribute__((overloadable)) min(ulong2 v1, ulong2 v2) { in min()
1329 extern ulong3 __attribute__((overloadable)) min(ulong3 v1, ulong3 v2) { in min()
1336 extern ulong4 __attribute__((overloadable)) min(ulong4 v1, ulong4 v2) { in min()
1345 extern double __attribute__((overloadable)) max(double v1, double v2) { in max()
1349 extern double2 __attribute__((overloadable)) max(double2 v1, double2 v2) { in max()
1356 extern double3 __attribute__((overloadable)) max(double3 v1, double3 v2) { in max()
1364 extern double4 __attribute__((overloadable)) max(double4 v1, double4 v2) { in max()
1373 extern long __attribute__((overloadable)) max(long v1, long v2) { in max()
1376 extern long2 __attribute__((overloadable)) max(long2 v1, long2 v2) { in max()
1382 extern long3 __attribute__((overloadable)) max(long3 v1, long3 v2) { in max()
1389 extern long4 __attribute__((overloadable)) max(long4 v1, long4 v2) { in max()
1398 extern ulong __attribute__((overloadable)) max(ulong v1, ulong v2) { in max()
1401 extern ulong2 __attribute__((overloadable)) max(ulong2 v1, ulong2 v2) { in max()
1407 extern ulong3 __attribute__((overloadable)) max(ulong3 v1, ulong3 v2) { in max()
1414 extern ulong4 __attribute__((overloadable)) max(ulong4 v1, ulong4 v2) { in max()
1486 float __attribute__((overloadable)) native_distance(float v1, float v2) { return fast_distance(v1, … in native_distance()
1487 float __attribute__((overloadable)) native_distance(float2 v1, float2 v2) { return fast_distance(v1… in native_distance()
1488 float __attribute__((overloadable)) native_distance(float3 v1, float3 v2) { return fast_distance(v1… in native_distance()
1489 float __attribute__((overloadable)) native_distance(float4 v1, float4 v2) { return fast_distance(v1… in native_distance()
1496 float __attribute__((overloadable)) native_divide(float v1, float v2) { return v1 / v2;} in native_divide()
1497 float2 __attribute__((overloadable)) native_divide(float2 v1, float2 v2) { return v1 / v2;} in native_divide()
1498 float3 __attribute__((overloadable)) native_divide(float3 v1, float3 v2) { return v1 / v2;} in native_divide()
1499 float4 __attribute__((overloadable)) native_divide(float4 v1, float4 v2) { return v1 / v2;} in native_divide()