Lines Matching refs:bk
1601 struct malloc_chunk* bk;
1770 work in the same way as fd/bk pointers of small chunks.
1807 struct malloc_tree_chunk* bk;
1956 waste, we allocate only the fd/bk pointers of bins, and then use
2613 assert(p->fd->bk == p);
2614 assert(p->bk->fd == p);
2654 assert(u->fd->bk == u);
2655 assert(u->bk->fd == u);
2700 mchunkptr p = b->bk;
2705 for (; p != b; p = p->bk) {
2712 assert(p->bk == b || chunksize(p->bk) == chunksize(p));
2915 F->bk = P;\
2917 P->bk = B;\
2923 mchunkptr B = P->bk;\
2932 F->bk = B;\
2950 F->bk = B;\
2984 X->fd = X->bk = X;\
2998 X->fd = X->bk = X;\
3009 T->fd = F->bk = X;\
3011 X->bk = T;\
3027 1. If x is a chained node, unlink it from its same-sized fd/bk links
3028 and choose its bk node as its replacement.
3044 if (X->bk != X) {\
3046 R = X->bk;\
3048 F->bk = R;\
3237 bin->fd = bin->bk = bin;