MCPcopy Create free account
hub / github.com/FastLED/FastLED / fabsf

Function fabsf

src/fl/math/math.h:508–508  ·  view source on GitHub ↗

fabs

Source from the content-addressed store, hash-verified

506
507// fabs
508inline float fabsf(float value) FL_NOEXCEPT { return fabs_impl_float(value); }
509inline double fabs(double value) FL_NOEXCEPT { return fabs_impl_double(value); }
510template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
511fabs(T value) FL_NOEXCEPT { return fabs_impl_float(static_cast<float>(value)); }

Callers 15

computeMethod · 0.85
drawAALineMethod · 0.85
drawFlowVectorsMethod · 0.85
i2s_define_bit_patternsFunction · 0.85
measure_sinFunction · 0.85
measure_cosFunction · 0.85
measure_atanFunction · 0.85
measure_atan2Function · 0.85
measure_asinFunction · 0.85
measure_acosFunction · 0.85
measure_sqrt_accuracyFunction · 0.85
measure_rsqrtFunction · 0.85

Calls 1

fabs_impl_floatFunction · 0.85

Tested by

no test coverage detected