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

Function memset_zero_byte

src/fl/stl/isr/memcpy.h:110–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108/// @param count Number of bytes to zero
109FL_OPTIMIZE_FUNCTION FL_IRAM FASTLED_FORCE_INLINE
110void memset_zero_byte(u8* dest, size_t count) {
111 for (size_t i = 0; i < count; i++) {
112 dest[i] = 0x0;
113 }
114}
115
116/// @brief ISR-safe word-aligned memset (4-byte writes)
117/// @param dest Destination pointer (must be 4-byte aligned)

Callers 2

memset_zero_wordFunction · 0.85
memset_zeroFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected