FastLED 3.9.15
Loading...
Searching...
No Matches

◆ LargeBlockAllocate()

void * fl::LargeBlockAllocate ( size_t size,
bool zero )

Definition at line 42 of file allocator.cpp.

42 {
43 void* ptr = Alloc(size);
44 if (zero) {
45 memset(ptr, 0, size);
46 }
47 return ptr;
48}

Referenced by fl::Frame::Frame(), and fl::LargeBlockAllocator< T >::Alloc().

+ Here is the caller graph for this function: