Home
last modified time | relevance | path

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

/glibc-2.36/malloc/
Dmalloc.c4420 mchunkptr nextchunk; /* next contiguous chunk */ in _int_free() local
4574 nextchunk = chunk_at_offset(p, size); in _int_free()
4582 && (char *) nextchunk in _int_free()
4586 if (__glibc_unlikely (!prev_inuse(nextchunk))) in _int_free()
4589 nextsize = chunksize(nextchunk); in _int_free()
4590 if (__builtin_expect (chunksize_nomask (nextchunk) <= CHUNK_HDR_SZ, 0) in _int_free()
4606 if (nextchunk != av->top) { in _int_free()
4608 nextinuse = inuse_bit_at_offset(nextchunk, nextsize); in _int_free()
4612 unlink_chunk (av, nextchunk); in _int_free()
4615 clear_inuse_bit_at_offset(nextchunk, 0); in _int_free()
[all …]