mheader           126 user/lib/libc/stdlib/malloc.c #define M_NEXT(mh)	((struct mheader *)(((char*)(mh))+M_NEXTOFF(mh)))
mheader           127 user/lib/libc/stdlib/malloc.c #define M_PREV(mh)	((struct mheader *)(((char*)(mh))-M_PREVOFF(mh)))
mheader           155 user/lib/libc/stdlib/malloc.c 	if (sizeof(struct mheader) != MBLOCKSIZE) {
mheader           216 user/lib/libc/stdlib/malloc.c 	struct mheader *mh;
mheader           224 user/lib/libc/stdlib/malloc.c 		mh = (struct mheader *) i;
mheader           294 user/lib/libc/stdlib/malloc.c 	struct mheader *mhnext, *mhnew;
mheader           324 user/lib/libc/stdlib/malloc.c 	if (mhnext != (struct mheader *) __heaptop) {
mheader           335 user/lib/libc/stdlib/malloc.c 	struct mheader *mh;
mheader           363 user/lib/libc/stdlib/malloc.c 		mh = (struct mheader *) i;
mheader           454 user/lib/libc/stdlib/malloc.c 	struct mheader *mhnextnext;
mheader           470 user/lib/libc/stdlib/malloc.c 	if (mhnextnext != (struct mheader *)__heaptop) {
mheader           475 user/lib/libc/stdlib/malloc.c 	__malloc_deadbeef(mhnext, sizeof(struct mheader));
mheader           484 user/lib/libc/stdlib/malloc.c 	struct mheader *mh, *mhnext, *mhprev;
mheader           508 user/lib/libc/stdlib/malloc.c 	mh = ((struct mheader *)x)-1;
mheader           525 user/lib/libc/stdlib/malloc.c 	if (mhnext != (struct mheader *)__heaptop) {
mheader           530 user/lib/libc/stdlib/malloc.c 	if (mh != (struct mheader *)__heapbase) {