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

Function ceil

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

Source from the content-addressed store, hash-verified

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

Callers 15

calculateDimensionsFunction · 0.85
drawDotMethod · 0.85
plotSoftDotMethod · 0.85
buildLinearBinLutMethod · 0.85
logRebinRangeMethod · 0.85
ceilMethod · 0.85
fixed_point.hFile · 0.85
s12x4Class · 0.85
s24x8Class · 0.85
s8x8Class · 0.85

Calls 2

ceil_impl_doubleFunction · 0.85
ceil_impl_floatFunction · 0.85

Tested by 1

test_floor_ceil_implFunction · 0.68