Home | History | Annotate | Download | only in stdlib

Lines Matching refs:bk

1647   struct malloc_chunk* bk;
1816 work in the same way as fd/bk pointers of small chunks.
1853 struct malloc_tree_chunk* bk;
1966 waste, we allocate only the fd/bk pointers of bins, and then use
2623 assert(p->fd->bk == p);
2624 assert(p->bk->fd == p);
2664 assert(u->fd->bk == u);
2665 assert(u->bk->fd == u);
2710 mchunkptr p = b->bk;
2715 for (; p != b; p = p->bk) {
2722 assert(p->bk == b || chunksize(p->bk) == chunksize(p));
2927 F->bk = P;\
2929 P->bk = B;\
2935 mchunkptr B = P->bk;\
2944 F->bk = B;\
2962 F->bk = B;\
2996 X->fd = X->bk = X;\
3010 X->fd = X->bk = X;\
3021 T->fd = F->bk = X;\
3023 X->bk = T;\
3039 1. If x is a chained node, unlink it from its same-sized fd/bk links
3040 and choose its bk node as its replacement.
3056 if (X->bk != X) {\
3058 R = X->bk;\
3060 F->bk = R;\
3249 bin->fd = bin->bk = bin;