Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
125
void* memset(void* s, int c, size_t n) FL_NOEXCEPT {
126
if (n == 0) return s;
127
return ::memset(s, c, n);
128
}
129
130
void* memchr(void* s, int c, size_t n) FL_NOEXCEPT {
131
if (n == 0) return nullptr;
Callers
15
fill_noise8
Function · 0.85
fill_noise16
Function · 0.85
fill_2dnoise8
Function · 0.85
fill_2dnoise16
Function · 0.85
clearLedDataInternal
Method · 0.85
getLedsBufferBytesForPin
Method · 0.85
onQueuingStart
Method · 0.85
Frame
Method · 0.85
clear
Method · 0.85
convertPixelsToRgb
Method · 0.85
draw
Method · 0.85
SynthOscillatorImpl
Method · 0.85
Calls
no outgoing calls
Tested by
3
setup
Function · 0.68
setup
Function · 0.68
capture
Function · 0.68