• Home
  • Raw
  • Download

Lines Matching refs:INTERNAL_SIZE_T

179   INTERNAL_SIZE_T           (default: size_t)
295 INTERNAL_SIZE_T is the word-size used for internal bookkeeping
297 overhead by defining INTERNAL_SIZE_T to be a 32 bit `unsigned int'
303 #ifndef INTERNAL_SIZE_T
304 #define INTERNAL_SIZE_T size_t
386 INTERNAL_SIZE_T units, with a positive integer n. This is exploited
391 INTERNAL_SIZE_T mzsz = (nbytes); \
393 INTERNAL_SIZE_T* mz = (INTERNAL_SIZE_T*) (charp); \
408 INTERNAL_SIZE_T mcsz = (nbytes); \
410 INTERNAL_SIZE_T* mcsrc = (INTERNAL_SIZE_T*) (src); \
411 INTERNAL_SIZE_T* mcdst = (INTERNAL_SIZE_T*) (dest); \
430 INTERNAL_SIZE_T* mzp = (INTERNAL_SIZE_T*)(charp); \
431 long mctmp = (nbytes)/sizeof(INTERNAL_SIZE_T), mcn; \
447 INTERNAL_SIZE_T* mcsrc = (INTERNAL_SIZE_T*) src; \
448 INTERNAL_SIZE_T* mcdst = (INTERNAL_SIZE_T*) dest; \
449 long mctmp = (nbytes)/sizeof(INTERNAL_SIZE_T), mcn; \
1136 INTERNAL_SIZE_T prev_size; /* Size of previous chunk (if free). */
1137 INTERNAL_SIZE_T size; /* Size in bytes, including overhead. */
1274 #define SIZE_SZ (sizeof(INTERNAL_SIZE_T))
1599 INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE;
1620 INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE;
1680 static void do_check_malloced_chunk(mchunkptr p, INTERNAL_SIZE_T s)
1682 static void do_check_malloced_chunk(p, s) mchunkptr p; INTERNAL_SIZE_T s;
1685 INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE;
1857 INTERNAL_SIZE_T size = chunksize(p);
1883 INTERNAL_SIZE_T offset = p->prev_size;
1884 INTERNAL_SIZE_T size = chunksize(p);
1928 static void malloc_extend_top(INTERNAL_SIZE_T nb)
1930 static void malloc_extend_top(nb) INTERNAL_SIZE_T nb;
1934 INTERNAL_SIZE_T front_misalign; /* unusable bytes at front of sbrked space */
1935 INTERNAL_SIZE_T correction; /* bytes for 2nd sbrk call */
1937 INTERNAL_SIZE_T top_size; /* new size of top chunk */
1940 INTERNAL_SIZE_T old_top_size = chunksize(old_top);
1945 INTERNAL_SIZE_T sbrk_size = nb + top_pad + MINSIZE;
2108 INTERNAL_SIZE_T victim_size; /* its size */
2120 INTERNAL_SIZE_T nb;
2369 INTERNAL_SIZE_T hd; /* its head field */
2370 INTERNAL_SIZE_T sz; /* its size */
2373 INTERNAL_SIZE_T nextsz; /* its size */
2374 INTERNAL_SIZE_T prevsz; /* size of previous contiguous chunk */
2500 INTERNAL_SIZE_T nb; /* padded request size */
2503 INTERNAL_SIZE_T oldsize; /* its size */
2506 INTERNAL_SIZE_T newsize; /* its size */
2510 INTERNAL_SIZE_T nextsize; /* its size */
2513 INTERNAL_SIZE_T prevsize; /* its size */
2516 INTERNAL_SIZE_T remainder_size; /* its size */
2719 INTERNAL_SIZE_T nb; /* padded request size */
2724 INTERNAL_SIZE_T newsize; /* its size */
2725 INTERNAL_SIZE_T leadsize; /* leading space befor alignment point */
2857 INTERNAL_SIZE_T csz;
2859 INTERNAL_SIZE_T sz = n * elem_size;
2865 INTERNAL_SIZE_T oldtopsize = chunksize(top);
3047 INTERNAL_SIZE_T avail = chunksize(top);