Home | History | Annotate | Download | only in mpreal

Lines Matching refs:bk

2062   struct malloc_chunk* bk;

2232 work in the same way as fd/bk pointers of small chunks.
2269 struct malloc_tree_chunk* bk;
2382 waste, we allocate only the fd/bk pointers of bins, and then use
3125 assert(p->fd->bk == p);
3126 assert(p->bk->fd == p);
3166 assert(u->fd->bk == u);
3167 assert(u->bk->fd == u);
3212 mchunkptr p = b->bk;
3217 for (; p != b; p = p->bk) {
3224 assert(p->bk == b || chunksize(p->bk) == chunksize(p));
3429 F->bk = P;\
3431 P->bk = B;\
3437 mchunkptr B = P->bk;\
3446 F->bk = B;\
3464 F->bk = B;\
3500 X->fd = X->bk = X;\
3514 X->fd = X->bk = X;\
3525 T->fd = F->bk = X;\
3527 X->bk = T;\
3543 1. If x is a chained node, unlink it from its same-sized fd/bk links
3544 and choose its bk node as its replacement.
3560 if (X->bk != X) {\
3562 R = X->bk;\
3564 F->bk = R;\
3750 bin->fd = bin->bk = bin;