Lines Matching refs:chunksize
1402 #define chunksize(p) (chunksize_nomask (p) & ~(SIZE_BITS)) macro
1408 #define next_chunk(p) ((mchunkptr) (((char *) (p)) + chunksize (p)))
1424 ((((mchunkptr) (((char *) (p)) + chunksize (p)))->mchunk_size) & PREV_INUSE)
1428 ((mchunkptr) (((char *) (p)) + chunksize (p)))->mchunk_size |= PREV_INUSE
1431 ((mchunkptr) (((char *) (p)) + chunksize (p)))->mchunk_size &= ~(PREV_INUSE)
1461 chunksize (p) - CHUNK_HDR_SZ : \
1462 chunksize (p) - CHUNK_HDR_SZ + (chunk_is_mmapped (p) ? 0 : SIZE_SZ))
1622 if (chunksize (p) != prev_size (next_chunk (p))) in unlink_chunk()
2076 unsigned long sz = chunksize (p); in do_check_chunk()
2078 char *max_address = (char *) (av->top) + chunksize (av->top); in do_check_chunk()
2183 assert (chunksize (next) >= MINSIZE); in do_check_inuse_chunk()
2285 (char *) av->top + chunksize (av->top)); in do_check_malloc_state()
2320 total += chunksize (p); in do_check_malloc_state()
2322 assert (fastbin_index (chunksize (p)) == i); in do_check_malloc_state()
2347 size = chunksize (p); in do_check_malloc_state()
2356 (unsigned long) chunksize (p->bk) >= (unsigned long) chunksize (p)); in do_check_malloc_state()
2367 assert (chunksize (p) < chunksize (p->fd_nextsize)); in do_check_malloc_state()
2369 assert (chunksize (p) > chunksize (p->fd_nextsize)); in do_check_malloc_state()
2372 assert (chunksize (p) > chunksize (p->bk_nextsize)); in do_check_malloc_state()
2374 assert (chunksize (p) < chunksize (p->bk_nextsize)); in do_check_malloc_state()
2386 (unsigned long) (chunksize (q)) >= MINSIZE); in do_check_malloc_state()
2601 old_size = chunksize (old_top); in sysmalloc()
2941 size = chunksize (p); in sysmalloc()
2980 top_size = chunksize (av->top); in systrim()
3040 INTERNAL_SIZE_T size = chunksize (p); in munmap_chunk()
3072 INTERNAL_SIZE_T size = chunksize (p); in mremap_chunk()
3370 mp_.mmap_threshold = chunksize (p); in libc_hidden_def()
3422 const INTERNAL_SIZE_T oldsize = chunksize (oldp); in libc_hidden_def()
3653 oldtopsize = chunksize (top (av)); in __libc_calloc()
3704 INTERNAL_SIZE_T csz = chunksize (p); in __libc_calloc()
3852 size_t victim_idx = fastbin_index (chunksize (victim)); in _int_malloc()
3993 size = chunksize (victim); in _int_malloc()
4189 while (((unsigned long) (size = chunksize (victim)) < in _int_malloc()
4295 size = chunksize (victim); in _int_malloc()
4366 size = chunksize (victim); in _int_malloc()
4427 size = chunksize (p); in _int_free()
4502 || __builtin_expect (chunksize (chunk_at_offset (p, size)) in _int_free()
4513 || chunksize (chunk_at_offset (p, size)) >= av->system_mem); in _int_free()
4557 && __builtin_expect (fastbin_index (chunksize (old)) != idx, 0)) in _int_free()
4583 >= ((char *) av->top + chunksize(av->top)), 0)) in _int_free()
4589 nextsize = chunksize(nextchunk); in _int_free()
4601 if (__glibc_unlikely (chunksize(p) != prevsize)) in _int_free()
4674 if ((unsigned long)(chunksize(av->top)) >= in _int_free()
4749 unsigned int idx = fastbin_index (chunksize (p)); in malloc_consolidate()
4758 size = chunksize (p); in malloc_consolidate()
4760 nextsize = chunksize(nextchunk); in malloc_consolidate()
4766 if (__glibc_unlikely (chunksize(p) != prevsize)) in malloc_consolidate()
4835 INTERNAL_SIZE_T nextsize = chunksize (next); in _int_realloc()
4879 newsize = chunksize (newp); in _int_realloc()
4988 newsize = chunksize (p) - leadsize; in _int_memalign()
5013 size = chunksize (p); in _int_memalign()
5052 INTERNAL_SIZE_T size = chunksize (p); in mtrim()
5125 return chunksize (p) - CHUNK_HDR_SZ; in musable()
5160 avail = chunksize (av->top); in int_mallinfo()
5177 fastavail += chunksize (p); in int_mallinfo()
5190 avail += chunksize (p); in int_mallinfo()
5205 m->keepcost = chunksize (av->top); in int_mallinfo()
5748 avail = chunksize (ar_ptr->top); in weak_alias()
5757 size_t thissize = chunksize (p); in weak_alias()