Home | History | Annotate | Download | only in StdLib

Lines Matching defs:malloc

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

5 calloc, malloc, and realloc functions is unspecified. The pointer returned
62 // List of memory allocated by malloc/calloc/etc.
67 /** The malloc function allocates space for an object whose size is specified
84 malloc(size_t Size)
93 DEBUG((DEBUG_ERROR, "ERROR malloc: Zero Size\n"));
99 DEBUG((DEBUG_POOL, "malloc(%d): NodeSz: %d", Size, NodeSize));
105 DEBUG((DEBUG_ERROR, "\nERROR malloc: AllocatePool returned %r\n", Status));
147 RetVal = malloc(NumSize);
161 does not match a pointer earlier returned by the calloc, malloc, or realloc
179 (void) RemoveEntryList((LIST_ENTRY *)Head); // Remove this node from the malloc pool
198 If Ptr is a null pointer, the realloc function behaves like the malloc
201 If Ptr does not match a pointer earlier returned by the calloc, malloc, or
218 - NULL > 0 Same as malloc(NewSize)
220 - valid NewSize >= OldSize Returns malloc(NewSize) with Oldsize bytes copied from Ptr
259 RetVal = malloc(NewSize); // Get the NEW memory region