Lines Matching defs:object
79 * malloc, which returns memory suitably aligned for any object, will
216 * Allocate a new object from a free-list.
219 * fl FreeList * The free-list to return an object from.
221 * return void * A new object of the size that was specified via
268 * Return an object to the free-list that it was allocated from.
271 * fl FreeList * The free-list from which the object was taken.
272 * object void * The node to be returned.
276 void *_del_FreeListNode(FreeList *fl, void *object)
286 if(object) {
287 *(void **)object = fl->free_list;
288 fl->free_list = object;