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

Function sqrtf

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

sqrt

Source from the content-addressed store, hash-verified

451
452// sqrt
453inline float sqrtf(float value) FL_NOEXCEPT { return sqrt_impl_float(value); }
454inline float sqrt(float value) FL_NOEXCEPT { return sqrt_impl_float(value); }
455inline double sqrt(double value) FL_NOEXCEPT { return sqrt_impl_double(value); }
456template<typename T> inline typename enable_if<is_integral<T>::value, float>::type

Callers 15

computeMethod · 0.85
drawDotMethod · 0.85
drawMethod · 0.85
drawMethod · 0.85
drawMethod · 0.85
drawMethod · 0.85
drawMethod · 0.85
drawMethod · 0.85
drawMethod · 0.85
SampleImplClass · 0.85
processMethod · 0.85
computePinkNoiseGainFunction · 0.85

Calls 1

sqrt_impl_floatFunction · 0.85

Tested by

no test coverage detected