Home
last modified time | relevance | path

Searched refs:old (Results 1 – 2 of 2) sorted by relevance

/malloc/
A Dmemusage.c397 realloc (void *old, size_t len) in realloc() argument
414 return (*reallocp)(old, len); in realloc()
416 if (old == NULL) in realloc()
424 real = ((struct header *) old) - 1; in realloc()
427 return (*reallocp)(old, len); in realloc()
442 if (len == 0 && old != NULL) in realloc()
A Dmalloc.c4532 mchunkptr old = *fb, old2; in _int_free() local
4538 if (__builtin_expect (old == p, 0)) in _int_free()
4540 p->fd = PROTECT_PTR (&p->fd, old); in _int_free()
4548 if (__builtin_expect (old == p, 0)) in _int_free()
4550 old2 = old; in _int_free()
4551 p->fd = PROTECT_PTR (&p->fd, old); in _int_free()
4553 while ((old = catomic_compare_and_exchange_val_rel (fb, p, old2)) in _int_free()
4560 if (have_lock && old != NULL in _int_free()
4561 && __builtin_expect (fastbin_index (chunksize (old)) != idx, 0)) in _int_free()

Completed in 14 milliseconds