Home
last modified time | relevance | path

Searched refs:malloc_chunk (Results 1 – 5 of 5) sorted by relevance

/external/u-boot/common/
Ddlmalloc.c219 struct malloc_chunk struct
223 struct malloc_chunk* fd; /* double links -- used only if free. */ argument
224 struct malloc_chunk* bk; argument
227 typedef struct malloc_chunk* mchunkptr;
358 #define MINSIZE (sizeof(struct malloc_chunk))
513 typedef struct malloc_chunk* mbinptr;
Ddlmalloc.src1134 struct malloc_chunk
1138 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 heads
1432 typedef struct malloc_chunk* mbinptr;
/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c1659 struct malloc_chunk { struct
1662 struct malloc_chunk* fd; /* double links -- used only if free. */ argument
1663 struct malloc_chunk* bk; argument
1666 typedef struct malloc_chunk mchunk;
1667 typedef struct malloc_chunk* mchunkptr;
1668 typedef struct malloc_chunk* sbinptr; /* The type of bins of chunks */
/external/libffi/src/
Ddlmalloc.c1654 struct malloc_chunk { struct
1657 struct malloc_chunk* fd; /* double links -- used only if free. */ argument
1658 struct malloc_chunk* bk; argument
1661 typedef struct malloc_chunk mchunk;
1662 typedef struct malloc_chunk* mchunkptr;
1663 typedef struct malloc_chunk* sbinptr; /* The type of bins of chunks */
/external/dlmalloc/
Dmalloc.c2184 struct malloc_chunk { struct
2187 struct malloc_chunk* fd; /* double links -- used only if free. */ argument
2188 struct malloc_chunk* bk; argument
2191 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()