Home | History | Annotate | Download | only in StdLib

Lines Matching defs:free

2   Definitions for memory allocation routines: calloc, malloc, realloc, free.

157 /** The free function causes the space pointed to by Ptr to be deallocated,
162 function, or if the space has been deallocated by a call to free or
169 free(void *Ptr)
175 DEBUG((DEBUG_POOL, "free(%p): Head: %p\n", Ptr, Head));
180 (void) gBS->FreePool (Head); // Now free the associated memory
184 DEBUG((DEBUG_ERROR, "ERROR free(0x%p): Signature is 0x%8X, expected 0x%8X\n",
188 DEBUG((DEBUG_POOL, "free Done\n"));
202 realloc function, or if the space has been deallocated by a call to the free
267 free( Ptr); // and reclaim the old region.
275 free( Ptr); // Reclaim the old region.