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

Function ceilf

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

ceil

Source from the content-addressed store, hash-verified

308
309// ceil
310inline float ceilf(float value) FL_NOEXCEPT { return ceil_impl_float(value); }
311inline double ceil(double value) FL_NOEXCEPT { return ceil_impl_double(value); }
312template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
313ceil(T value) FL_NOEXCEPT { return ceil_impl_float(static_cast<float>(value)); }

Callers 6

at_splat_extrapolateMethod · 0.85
drawDotMethod · 0.85
triggerMethod · 0.85
calculateBinMappingsMethod · 0.85
FL_TEST_FILEFunction · 0.85
plotSoftDotFunction · 0.85

Calls 1

ceil_impl_floatFunction · 0.85

Tested by

no test coverage detected