Lines Matching full:allocated
19 * Manage an allocated block of heap memory. This object is the sole manager of
30 * than the current size (and the current block was dynamically allocated).
35 * current block is dynamically allocated, free the old block and
42 * current block is dynamically allocated, just return the old
60 * Return the allocated block.
83 * Manage an allocated block of memory. If the requested size is <= kSizeRequested (or slightly
92 * Must call reset(size) to return an allocated block.
101 * the allocation will come from the stack, otherwise it will be dynamically allocated.
110 * Free the allocated block (if any). If the block was small enough to have been allocated on
120 * Return the allocated block. May return non-null even if the block is of zero size. Since
121 * this may be on the stack or dynamically allocated, the caller must not call sk_free() on it,
127 * Return a new block of the requested size, freeing (as necessary) any previously allocated
129 * block may be allocated locally, rather than from the heap.