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

Function memset

src/fl/stl/cstring.cpp.hpp:125–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123}
124
125void* memset(void* s, int c, size_t n) FL_NOEXCEPT {
126 if (n == 0) return s;
127 return ::memset(s, c, n);
128}
129
130void* memchr(void* s, int c, size_t n) FL_NOEXCEPT {
131 if (n == 0) return nullptr;

Callers 15

fill_noise8Function · 0.85
fill_noise16Function · 0.85
fill_2dnoise8Function · 0.85
fill_2dnoise16Function · 0.85
clearLedDataInternalMethod · 0.85
onQueuingStartMethod · 0.85
FrameMethod · 0.85
clearMethod · 0.85
convertPixelsToRgbMethod · 0.85
drawMethod · 0.85
SynthOscillatorImplMethod · 0.85

Calls

no outgoing calls

Tested by 3

setupFunction · 0.68
setupFunction · 0.68
captureFunction · 0.68