Lines Matching refs:freeptr
128 #define freeptr (arena + 2) macro
157 p = &freeptr[0]; in checkq()
161 while (p != &freeptr[1]) { in checkq()
168 while (p != &freeptr[0]) { in checkq()
315 if (freeptr[0].nextfree == GROUND) { in malloc_unlocked()
321 freeptr[0].nextfree = &(freeptr[1]); in malloc_unlocked()
322 freeptr[1].nextblk = &(arena[0]); in malloc_unlocked()
323 freeptr[1].prevfree = &(freeptr[0]); in malloc_unlocked()
466 if ((freeptr[1].nextblk-&(freeptr[1])) < nb) { in malloc_unlocked()
472 blk = freeptr; in malloc_unlocked()
496 if (blk == &(freeptr[1])) { in malloc_unlocked()
599 if (nblk != &(freeptr[1])) { in malloc_unlocked()
977 if (freeptr[0].nextfree == GROUND) { in mallinfo()
1102 if (freeptr[0].nextfree == GROUND) { in check_arena()
1119 assert(blk->nextfree >= freeptr); in check_arena()
1120 assert(blk->prevfree >= freeptr); in check_arena()
1126 7) == 0 || blk->prevfree == freeptr); in check_arena()
1161 if (freeptr[0].nextfree == GROUND) { in rstalloc()
1166 freeptr[0].nextfree = GROUND; in rstalloc()