Lines Matching refs:old
113 Alloc * old = VOID_TO_ALLOCP(ptr);
114 Alloc copy = *old;
115 Alloc * new = realloc(old, ALLOCSIZE(sz));
118 if (new != old)
129 Alloc * old = VOID_TO_ALLOCP(ptr);
131 assert(old && old != head);
132 (old->next->prev = old->prev)->next = old->next;
133 old->next = old->prev = 0; /* so we can puke on multiple free's */
134 free(old);