Searched refs:malloc_chunk (Results 1 – 5 of 5) sorted by relevance
219 struct malloc_chunk struct223 struct malloc_chunk* fd; /* double links -- used only if free. */ argument224 struct malloc_chunk* bk; argument227 typedef struct malloc_chunk* mchunkptr;358 #define MINSIZE (sizeof(struct malloc_chunk))513 typedef struct malloc_chunk* mbinptr;
1134 struct malloc_chunk1138 struct malloc_chunk* fd; /* double links -- used only if free. */1139 struct malloc_chunk* bk;1142 typedef struct malloc_chunk* mchunkptr;1146 malloc_chunk details:1277 #define MINSIZE (sizeof(struct malloc_chunk))1316 /* Ptr to next physical malloc_chunk. */1320 /* Ptr to previous physical malloc_chunk */1402 malloc_chunk. (This way, the fd/bk offsets for linking bin heads1432 typedef struct malloc_chunk* mbinptr;
1659 struct malloc_chunk { struct1662 struct malloc_chunk* fd; /* double links -- used only if free. */ argument1663 struct malloc_chunk* bk; argument1666 typedef struct malloc_chunk mchunk;1667 typedef struct malloc_chunk* mchunkptr;1668 typedef struct malloc_chunk* sbinptr; /* The type of bins of chunks */
1654 struct malloc_chunk { struct1657 struct malloc_chunk* fd; /* double links -- used only if free. */ argument1658 struct malloc_chunk* bk; argument1661 typedef struct malloc_chunk mchunk;1662 typedef struct malloc_chunk* mchunkptr;1663 typedef struct malloc_chunk* sbinptr; /* The type of bins of chunks */
2184 struct malloc_chunk { struct2187 struct malloc_chunk* fd; /* double links -- used only if free. */ argument2188 struct malloc_chunk* bk; argument2191 typedef struct malloc_chunk mchunk;2192 typedef struct malloc_chunk* mchunkptr;2193 typedef struct malloc_chunk* sbinptr; /* The type of bins of chunks */5193 start = (void*)((char*)q + sizeof(struct malloc_chunk)); in internal_inspect_all()