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

Function fabs

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

Source from the content-addressed store, hash-verified

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)); }
512

Callers 7

build_profile_cacheFunction · 0.85
invert3x3Function · 0.85
barycentric_xyFunction · 0.85
synth.hppFile · 0.85
FL_TEST_FILEFunction · 0.85

Calls 2

fabs_impl_doubleFunction · 0.85
fabs_impl_floatFunction · 0.85

Tested by

no test coverage detected