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

Function pow

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

Source from the content-addressed store, hash-verified

435// pow
436inline float powf(float base, float exponent) FL_NOEXCEPT { return pow_impl_float(base, exponent); }
437inline double pow(double base, double exponent) FL_NOEXCEPT { return pow_impl_double(base, exponent); }
438template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
439pow(T base, T exponent) FL_NOEXCEPT { return pow_impl_float(static_cast<float>(base), static_cast<float>(exponent)); }
440

Callers 15

pow_impl_doubleFunction · 0.70
Gamma8ImplMethod · 0.70
applyGamma_videoFunction · 0.50
flowAdvectMethod · 0.50
FL_TEST_FILEFunction · 0.50
test_pow_basic_implFunction · 0.50
test_pow_extended_implFunction · 0.50
measure_powFunction · 0.50
measure_pow_tFunction · 0.50
FL_TEST_FILEFunction · 0.50

Calls 2

pow_impl_doubleFunction · 0.85
pow_impl_floatFunction · 0.85