Lines Matching refs:allocated
405 * Malloc returns a pointer to the allocated block. A null
410 * ENOMEM: storage could not be allocated.
416 * Note: In this implementation, each allocated block includes a
424 Freehdr allocp; /* ptr to node to be allocated */
534 * set the length field of the allocated block; we need
540 __mallinfo.uordbytes += retblk->size; /* bytes allocated */
541 __mallinfo.allocated++; /* frags allocated */
589 * Freeing something that wasn't allocated isn't
613 __mallinfo.uordbytes -= nbytes; /* bytes allocated */
614 __mallinfo.allocated--; /* frags allocated */
722 __mallinfo.allocated++; /* negate effect of free() */
923 * Returns -1 if block spans a free/allocated boundary (error() called
966 __mallinfo.allocated++;
1036 __mallinfo.allocated += 2;
1058 __mallinfo.allocated += 3;
1096 * true if at least n bytes can be allocated
1142 __mallinfo.allocated++;