Home | History | Annotate | Download | only in runtime

Lines Matching refs:fast_length

1015 extern float __attribute__((overloadable)) fast_length(float v) {
1018 extern float __attribute__((overloadable)) fast_length(float2 v) {
1021 extern float __attribute__((overloadable)) fast_length(float3 v) {
1024 extern float __attribute__((overloadable)) fast_length(float4 v) {
1029 return fast_length(lhs - rhs);
1032 return fast_length(lhs - rhs);
1035 return fast_length(lhs - rhs);
1038 return fast_length(lhs - rhs);
1497 float __attribute__((overloadable)) native_length(float v) { return fast_length(v);}
1498 float __attribute__((overloadable)) native_length(float2 v) { return fast_length(v);}
1499 float __attribute__((overloadable)) native_length(float3 v) { return fast_length(v);}
1500 float __attribute__((overloadable)) native_length(float4 v) { return fast_length(v);}