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

◆ LargeBlockAllocate()

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

Definition at line 41 of file allocator.cpp.

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

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

+ Here is the caller graph for this function: