Lines Matching defs:malloc
33 * Memory management: malloc(), realloc(), free(), memalign().
119 /* want to return a unique pointer on malloc(0) */
164 malloc(size_t size)
401 call_malloc: /* call malloc to get a new block */
414 * Attempt special case recovery allocations since malloc() failed:
419 * malloc() may have failed to allocate the chunk of
422 * malloc() may have failed as with 2. Change to
465 /* malloc() sets errno */
476 * than malloc/realloc and the tree searches performed by these
1120 size_t reqsize; /* Num of bytes to get from malloc() */
1121 TREE *p; /* Ptr returned from malloc() */
1141 * aligned correctly. The worst case is when malloc returns
1166 p = (TREE *) malloc(reqsize);
1168 /* malloc sets errno */
1271 if ((mp = malloc(total)) != NULL)