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

Function exp

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

Source from the content-addressed store, hash-verified

397// exp
398inline float expf(float value) FL_NOEXCEPT { return exp_impl_float(value); }
399inline double exp(double value) FL_NOEXCEPT { return exp_impl_double(value); }
400template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
401exp(T value) FL_NOEXCEPT { return exp_impl_float(static_cast<float>(value)); }
402

Callers 11

updatePIControllerMethod · 0.85
updateMethod · 0.85
updateMethod · 0.85
updateMethod · 0.85
recomputeMethod · 0.85
generateSyntheticFFTFunction · 0.85
generateSyntheticCQFFTFunction · 0.85
auto_gain.hppFile · 0.85
createMockAudioContextFunction · 0.85
FL_TEST_FILEFunction · 0.85
operator()Method · 0.85

Calls 2

exp_impl_doubleFunction · 0.85
exp_impl_floatFunction · 0.85

Tested by 2

generateSyntheticFFTFunction · 0.68
generateSyntheticCQFFTFunction · 0.68