Home | History | Annotate | Download | only in StdLib

Lines Matching defs:realloc

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

5 calloc, malloc, and realloc functions is unspecified. The pointer returned
43 region. Since this is required for the implementation of realloc,
161 does not match a pointer earlier returned by the calloc, malloc, or realloc
163 realloc, the behavior is undefined.
191 /** The realloc function changes the size of the object pointed to by Ptr to
198 If Ptr is a null pointer, the realloc function behaves like the malloc
202 realloc function, or if the space has been deallocated by a call to the free
203 or realloc function, the behavior is undefined.
234 realloc(void *Ptr, size_t ReqSize)
248 DEBUG((DEBUG_ERROR, "ERROR realloc(0x%p): Signature is 0x%8X, expected 0x%8X\n",
277 DEBUG((DEBUG_POOL, "0x%p = realloc(%p, %d): Head: %p NewSz: %d\n",