Lines Matching refs:INTERNAL_SIZE_T
221 INTERNAL_SIZE_T prev_size; /* Size of previous chunk (if free). */
222 INTERNAL_SIZE_T size; /* Size in bytes, including overhead. */
355 #define SIZE_SZ (sizeof(INTERNAL_SIZE_T))
663 #define binblocks_r ((INTERNAL_SIZE_T)av_[1]) /* bitvector of nonempty blocks */
734 INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE;
755 INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE;
815 static void do_check_malloced_chunk(mchunkptr p, INTERNAL_SIZE_T s) in do_check_malloced_chunk()
817 static void do_check_malloced_chunk(p, s) mchunkptr p; INTERNAL_SIZE_T s; in do_check_malloced_chunk()
820 INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE;
992 INTERNAL_SIZE_T size = chunksize(p);
1018 INTERNAL_SIZE_T offset = p->prev_size;
1019 INTERNAL_SIZE_T size = chunksize(p);
1063 static void malloc_extend_top(INTERNAL_SIZE_T nb) in malloc_extend_top()
1065 static void malloc_extend_top(nb) INTERNAL_SIZE_T nb; in malloc_extend_top()
1069 INTERNAL_SIZE_T front_misalign; /* unusable bytes at front of sbrked space */
1070 INTERNAL_SIZE_T correction; /* bytes for 2nd sbrk call */
1072 INTERNAL_SIZE_T top_size; /* new size of top chunk */
1075 INTERNAL_SIZE_T old_top_size = chunksize(old_top);
1080 INTERNAL_SIZE_T sbrk_size = nb + top_pad + MINSIZE;
1243 INTERNAL_SIZE_T victim_size; /* its size */
1255 INTERNAL_SIZE_T nb;
1515 INTERNAL_SIZE_T hd; /* its head field */
1516 INTERNAL_SIZE_T sz; /* its size */
1519 INTERNAL_SIZE_T nextsz; /* its size */
1520 INTERNAL_SIZE_T prevsz; /* size of previous contiguous chunk */
1652 INTERNAL_SIZE_T nb; /* padded request size */
1655 INTERNAL_SIZE_T oldsize; /* its size */
1658 INTERNAL_SIZE_T newsize; /* its size */
1662 INTERNAL_SIZE_T nextsize; /* its size */
1665 INTERNAL_SIZE_T prevsize; /* its size */
1668 INTERNAL_SIZE_T remainder_size; /* its size */
1882 INTERNAL_SIZE_T nb; /* padded request size */
1887 INTERNAL_SIZE_T newsize; /* its size */
1888 INTERNAL_SIZE_T leadsize; /* leading space befor alignment point */
2068 INTERNAL_SIZE_T csz;
2070 INTERNAL_SIZE_T sz = n * elem_size;
2077 INTERNAL_SIZE_T oldtopsize = chunksize(top);
2269 INTERNAL_SIZE_T avail = chunksize(top); in malloc_update_mallinfo()