Lines Matching refs:bk
224 struct malloc_chunk* bk; member
618 #define last(b) ((b)->bk)
775 assert(p->fd->bk == p);
776 assert(p->bk->fd == p);
878 P->bk = BK; \
880 FD->bk = BK->fd = P; \
891 BK = FD->bk; \
893 P->bk = BK; \
895 FD->bk = BK->fd = P; \
904 BK = P->bk; \
906 FD->bk = BK; \
914 last_remainder->fd = last_remainder->bk = P; \
915 P->fd = P->bk = last_remainder; \
921 (last_remainder->fd = last_remainder->bk = last_remainder)
1306 for (victim = last(bin); victim != bin; victim = victim->bk)
1395 for (victim = last(bin); victim != bin; victim = victim->bk)
2274 for (p = last(b); p != b; p = p->bk) in malloc_update_mallinfo()