Lines Matching refs:chunk_at_offset
1056 #define chunk_at_offset(p, s) ((mchunkptr)(((char*)(p)) + (s))) macro
1394 mchunkptr next = chunk_at_offset(p, sz); in do_check_free_chunk()
1714 char* old_end = (char*)(chunk_at_offset(old_top, old_top_size)); in malloc_extend_top()
1800 chunk_at_offset(old_top, old_top_size )->size = in malloc_extend_top()
1802 chunk_at_offset(old_top, old_top_size + SIZE_SZ)->size = in malloc_extend_top()
1995 remainder = chunk_at_offset(victim, nb); in mALLOc()
2060 remainder = chunk_at_offset(victim, nb); in mALLOc()
2151 top = chunk_at_offset(victim, nb); in mALLOc()
2225 next = chunk_at_offset(p, sz); in fREe()
2235 p = chunk_at_offset(p, -prevsz); in fREe()
2255 p = chunk_at_offset(p, -prevsz); in fREe()
2425 next = chunk_at_offset(oldp, oldsize); in rEALLOc()
2436 top = chunk_at_offset(oldp, nb); in rEALLOc()
2479 top = chunk_at_offset(newp, nb); in rEALLOc()
2546 remainder = chunk_at_offset(newp, nb); in rEALLOc()
2682 remainder = chunk_at_offset(p, nb); in mEMALIGn()