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

Function malloc

src/fl/stl/malloc.cpp.hpp:9–11  ·  view source on GitHub ↗

Provide C standard library malloc/free/realloc functions

Source from the content-addressed store, hash-verified

7namespace fl {
8 // Provide C standard library malloc/free/realloc functions
9 void* malloc(size_t size) {
10 return ::malloc(size);
11 }
12
13 void free(void* ptr) {
14 ::free(ptr);

Callers 15

aligned_allocFunction · 0.70
callocFunction · 0.70
DefaultAllocFunction · 0.70
SynthOscillatorImplMethod · 0.50
handle_esp_requestMethod · 0.50
StringHolderMethod · 0.50
getFrameDataFunction · 0.50
getScreenMapDataFunction · 0.50
getStripUpdateDataFunction · 0.50
getUiUpdateDataFunction · 0.50
checkBasicAuthFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected